kreta/Kreta.BusinessLogic/HelperClasses/DualisSzerzodesSearchCo.cs
2024-03-13 00:33:46 +01:00

52 lines
1.6 KiB
C#

using System;
using Kreta.DataAccessManual.ParameterClasses;
namespace Kreta.BusinessLogic.HelperClasses
{
public class DualisSzerzodesSearchCo
{
public int? TanarId { get; set; }
public string NevSearch { get; set; }
public string AnyjaNeve { get; set; }
public string SzuletesiHely { get; set; }
public DateTime? SzuletesiIdoTol { get; set; }
public DateTime? SzuletesiIdoIg { get; set; }
public string OktatasiAzonosito { get; set; }
public string DualisKepzohelyNev { get; set; }
public string DualisKepzohelyAdoszama { get; set; }
public DateTime? FeltoltesDatumTol { get; set; }
public DateTime? FeltoltesDatumIg { get; set; }
public int? Statusz { get; set; }
public DualisSzerzodesSearchPco ConvertToPCO()
{
return new DualisSzerzodesSearchPco
{
TanarId = this.TanarId,
NevSearch = this.NevSearch,
AnyjaNeve = this.AnyjaNeve,
SzuletesiHely = this.SzuletesiHely,
SzuletesiIdoTol = this.SzuletesiIdoTol,
SzuletesiIdoIg = this.SzuletesiIdoIg,
OktatasiAzonosito = this.OktatasiAzonosito,
DualisKepzohelyNev = this.DualisKepzohelyNev,
DualisKepzohelyAdoszama = this.DualisKepzohelyAdoszama,
FeltoltesDatumTol = this.FeltoltesDatumTol,
FeltoltesDatumIg = this.FeltoltesDatumIg,
Statusz = this.Statusz
};
}
}
}