51 lines
1.8 KiB
C#
51 lines
1.8 KiB
C#
using System;
|
|
using Kreta.DataAccessManual.ParameterClasses;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class HelyettesitesekListajaSearchCO
|
|
{
|
|
public int? FeladatKategoriaId { get; set; }
|
|
|
|
public int? FeladatEllatasiHelyId { get; set; }
|
|
|
|
public DateTime? HelyettesitesDatumaTolSearch { get; set; }
|
|
|
|
public DateTime? HelyettesitesDatumaIgSearch { get; set; }
|
|
|
|
public int? HelyettesitettTanarSearch { get; set; }
|
|
|
|
public int? HelyettesitoTanarSearch { get; set; }
|
|
|
|
public int? OsztalyCsoportSearch { get; set; }
|
|
|
|
public int? TantargySearch { get; set; }
|
|
|
|
public int? HelyettesitesTipusaSearch { get; set; }
|
|
|
|
public int? NaplozottSearch { get; set; }
|
|
|
|
public bool IsKellKapcsolodoCsoportokSearch { get; set; }
|
|
|
|
public int? IsOnlineOra { get; set; }
|
|
|
|
public HelyettesitesekListajaSearchPCO ConvertToPCO()
|
|
{
|
|
return new HelyettesitesekListajaSearchPCO
|
|
{
|
|
FeladatKategoriaId = this.FeladatKategoriaId,
|
|
FeladatEllatasiHelyId = this.FeladatEllatasiHelyId,
|
|
HelyettesitesDatumaTolSearch = this.HelyettesitesDatumaTolSearch,
|
|
HelyettesitesDatumaIgSearch = this.HelyettesitesDatumaIgSearch,
|
|
HelyettesitettTanarSearch = this.HelyettesitettTanarSearch,
|
|
HelyettesitesTipusaSearch = this.HelyettesitesTipusaSearch,
|
|
HelyettesitoTanarSearch = this.HelyettesitoTanarSearch,
|
|
NaplozottSearch = this.NaplozottSearch,
|
|
OsztalyCsoportSearch = this.OsztalyCsoportSearch,
|
|
TantargySearch = this.TantargySearch,
|
|
IsKellKapcsolodoCsoportokSearch = this.IsKellKapcsolodoCsoportokSearch,
|
|
IsOnlineOra = IsOnlineOra
|
|
};
|
|
}
|
|
}
|
|
}
|