29 lines
894 B
C#
29 lines
894 B
C#
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
|
|
};
|
|
}
|
|
}
|
|
}
|