init
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
using Kreta.DataAccessManual.ParameterClasses;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class EszkozokSearchCo
|
||||
{
|
||||
public int TanevId { get; set; }
|
||||
public int? TeremId { get; set; }
|
||||
public int? FelelosId { get; set; }
|
||||
public int? KategoriaId { get; set; }
|
||||
public int? MinDarabszam { get; set; }
|
||||
public int? MaxDarabszam { get; set; }
|
||||
public string Nev { get; set; }
|
||||
|
||||
public EszkozokSearchPco ConvertToPco()
|
||||
{
|
||||
return new EszkozokSearchPco
|
||||
{
|
||||
TanevId = this.TanevId,
|
||||
TeremId = this.TeremId,
|
||||
FelelosId = this.FelelosId,
|
||||
KategoriaId = this.KategoriaId,
|
||||
MinDarabszam = this.MinDarabszam,
|
||||
MaxDarabszam = this.MaxDarabszam,
|
||||
Nev = this.Nev
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user