72 lines
2.5 KiB
C#
72 lines
2.5 KiB
C#
using System;
|
|
using Kreta.DataAccessManual.ParameterClasses;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class NebuloSearchCo
|
|
{
|
|
public string NebuloNeveSearch { get; set; }
|
|
|
|
public string OktatasiAzonositoSearch { get; set; }
|
|
|
|
public string AnyjaNeveSearch { get; set; }
|
|
|
|
public string SzuletesiHelySearch { get; set; }
|
|
|
|
public DateTime? TolSearch { get; set; }
|
|
|
|
public DateTime? IgSearch { get; set; }
|
|
|
|
public int? FelvetelStatuszaSearch { get; set; }
|
|
|
|
public int? FeladatellatasiHelyIdSearch { get; set; }
|
|
|
|
public int? KirSzolgaltatasSearch { get; set; }
|
|
|
|
public int? EtikaHitErkolcstanSearch { get; set; }
|
|
|
|
public string OvodaAzonositojaVagyNeveSearch { get; set; }
|
|
|
|
public int? EletvitelszeruOttLakasSearch { get; set; }
|
|
|
|
public int? SzakertoiBizottsagSearch { get; set; }
|
|
|
|
public int? SzuloTestverBetegSearch { get; set; }
|
|
|
|
public int? TestverAdottIntezmenyTanulojaSearch { get; set; }
|
|
|
|
public int? AzIskolaALakohelyetolSearch { get; set; }
|
|
|
|
public int? MunkaltatoiIgazolasSearch { get; set; }
|
|
|
|
public int? SNISearch { get; set; }
|
|
|
|
public int? BTMSearch { get; set; }
|
|
|
|
public NebuloSearchPco ToPco()
|
|
{
|
|
return new NebuloSearchPco
|
|
{
|
|
NebuloNeveSearch = NebuloNeveSearch,
|
|
OktatasiAzonositoSearch = OktatasiAzonositoSearch,
|
|
AnyjaNeveSearch = AnyjaNeveSearch,
|
|
SzuletesiHelySearch = SzuletesiHelySearch,
|
|
TolSearch = TolSearch,
|
|
IgSearch = IgSearch,
|
|
FelvetelStatuszaSearch = FelvetelStatuszaSearch,
|
|
FeladatellatasiHelyIdSearch = FeladatellatasiHelyIdSearch,
|
|
KirSzolgaltatasSearch = KirSzolgaltatasSearch,
|
|
EtikaHitErkolcstanSearch = EtikaHitErkolcstanSearch,
|
|
OvodaAzonositojaVagyNeveSearch = OvodaAzonositojaVagyNeveSearch,
|
|
EletvitelszeruOttLakasSearch = EletvitelszeruOttLakasSearch,
|
|
SzakertoiBizottsagSearch = SzakertoiBizottsagSearch,
|
|
SzuloTestverBetegSearch = SzuloTestverBetegSearch,
|
|
TestverAdottIntezmenyTanulojaSearch = TestverAdottIntezmenyTanulojaSearch,
|
|
AzIskolaALakohelyetolSearch = AzIskolaALakohelyetolSearch,
|
|
MunkaltatoiIgazolasSearch = MunkaltatoiIgazolasSearch,
|
|
SNISearch = SNISearch,
|
|
BTMSearch = BTMSearch
|
|
};
|
|
}
|
|
}
|
|
}
|