init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
Kreta.BusinessLogic/HelperClasses
53
Kreta.BusinessLogic/HelperClasses/FogadooraSearchCo.cs
Normal file
53
Kreta.BusinessLogic/HelperClasses/FogadooraSearchCo.cs
Normal file
|
@ -0,0 +1,53 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Kreta.DataAccessManual.ParameterClasses;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class FogadooraSearchCo
|
||||
{
|
||||
public int? FeladatKategoriaId { get; set; }
|
||||
|
||||
public int? FeladatEllatasiHelyId { get; set; }
|
||||
|
||||
public List<int> OsztalyCsoportIdsSrc { get; set; }
|
||||
|
||||
public int? TeremIdSrc { get; set; }
|
||||
|
||||
public DateTime? IdopontSrc { get; set; }
|
||||
|
||||
public int? TanarIdSrc { get; set; }
|
||||
|
||||
public DateTime? IdopontTolSrc { get; set; }
|
||||
public DateTime? IdopontIgSrc { get; set; }
|
||||
|
||||
public DateTime? IdointervallumTolSrc { get; set; }
|
||||
public DateTime? IdointervallumIgSrc { get; set; }
|
||||
|
||||
public int? RendszeressegIdSrc { get; set; }
|
||||
|
||||
public int? TipusIdSrc { get; set; }
|
||||
|
||||
public bool? IsJelentkezheto { get; set; }
|
||||
|
||||
public FogadooraSearchPco ConvertToPco()
|
||||
{
|
||||
return new FogadooraSearchPco
|
||||
{
|
||||
FeladatKategoriaId = this.FeladatKategoriaId,
|
||||
FeladatEllatasiHelyId = this.FeladatEllatasiHelyId,
|
||||
OsztalyCsoportIdsSrc = this.OsztalyCsoportIdsSrc,
|
||||
TeremIdSrc = this.TeremIdSrc,
|
||||
IdopontSrc = this.IdopontSrc,
|
||||
TanarIdSrc = this.TanarIdSrc,
|
||||
IdopontTolSrc = this.IdopontTolSrc,
|
||||
IdopontIgSrc = this.IdopontIgSrc,
|
||||
IdointervallumTolSrc = this.IdointervallumTolSrc,
|
||||
IdointervallumIgSrc = this.IdointervallumIgSrc,
|
||||
RendszeressegIdSrc = this.RendszeressegIdSrc,
|
||||
TipusIdSrc = this.TipusIdSrc,
|
||||
IsJelentkezheto = this.IsJelentkezheto,
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue