init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,39 @@
|
|||
using System;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses.OsztalyCsoportbaSorolas
|
||||
{
|
||||
public class OsztalyListItem
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Nev { get; set; }
|
||||
|
||||
public OsztalybaSorolasDDLItem ConvertToDDLItem()
|
||||
{
|
||||
return new OsztalybaSorolasDDLItem()
|
||||
{
|
||||
Text = Nev,
|
||||
Value = Id.ToString(),
|
||||
FilterId = null,
|
||||
Group = ""
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
public class OsztalybaSorolasDDLItem
|
||||
{
|
||||
public int? FilterId { get; set; }
|
||||
public string Value { get; set; }
|
||||
public string Text { get; set; }
|
||||
public string Group { get; set; }
|
||||
public DateTime? BesorolasDatum { get; set; }
|
||||
public DateTime? KisorolasDatum { get; set; }
|
||||
public bool Aktiv { get; set; }
|
||||
public DateTime SzulDatum { get; set; }
|
||||
public string Neme { get; set; }
|
||||
public string Osztalya { get; set; }
|
||||
public string Vegzaradek { get; set; }
|
||||
public string NevElotagNelkul { get; set; }
|
||||
public int JogviszonyCount { get; set; }
|
||||
public int JogviszonyId { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue