init
This commit is contained in:
48
Kreta.BusinessLogic/HelperClasses/DualisKepzohelySearchCo.cs
Normal file
48
Kreta.BusinessLogic/HelperClasses/DualisKepzohelySearchCo.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Kreta.DataAccessManual.ParameterClasses;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class DualisKepzohelySearchCo
|
||||
{
|
||||
public string KepzohelyNeve { get; set; }
|
||||
public string KepzohelyAdoszama { get; set; }
|
||||
public string KepzohelyCime { get; set; }
|
||||
public int? TanulokSzamaTol { get; set; }
|
||||
public int? TanulokSzamaIg { get; set; }
|
||||
public int? OktatokSzamaTol { get; set; }
|
||||
public int? OktatokSzamaIg { get; set; }
|
||||
public int? CsoportokSzamaTol { get; set; }
|
||||
public int? CsoportokSzamaIg { get; set; }
|
||||
public int? TantargyakSzamaTol { get; set; }
|
||||
public int? TantargyakSzamaIg { get; set; }
|
||||
public int? HelyszinSzamaTol { get; set; }
|
||||
public int? HelyszinSzamaIg { get; set; }
|
||||
public int? SzervezetId { get; set; }
|
||||
|
||||
public SzervezetSearchPco ConvertToPCO()
|
||||
{
|
||||
return new SzervezetSearchPco
|
||||
{
|
||||
Nev = KepzohelyNeve,
|
||||
Azonosito = KepzohelyAdoszama,
|
||||
SzervezetCime = KepzohelyCime,
|
||||
TanulokSzamaTol = TanulokSzamaTol,
|
||||
TanulokSzamaIg = TanulokSzamaIg,
|
||||
OktatokSzamaTol = OktatokSzamaTol,
|
||||
OktatokSzamaIg = OktatokSzamaIg,
|
||||
CsoportokSzamaTol = CsoportokSzamaTol,
|
||||
CsoportokSzamaIg = CsoportokSzamaIg,
|
||||
TantargyakSzamaTol = TantargyakSzamaTol,
|
||||
TantargyakSzamaIg = TantargyakSzamaIg,
|
||||
HelyszinSzamaTol = HelyszinSzamaTol,
|
||||
HelyszinSzamaIg = HelyszinSzamaIg,
|
||||
SzervezetId = SzervezetId
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user