init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
63
KretaWeb/Areas/Beiratkozas/Models/NebuloGridModel.cs
Normal file
63
KretaWeb/Areas/Beiratkozas/Models/NebuloGridModel.cs
Normal file
|
@ -0,0 +1,63 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.BusinessLogic.Interfaces;
|
||||
using Kreta.Resources;
|
||||
|
||||
namespace Kreta.Web.Areas.Beiratkozas.Models
|
||||
{
|
||||
public class NebuloGridModel : IKretaIdentity
|
||||
{
|
||||
public string ID { get; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.Nev), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string Nev { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.Nev), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string NevElotagNelkul { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.AnyjaNeve), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string AnyjaNeve { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.AnyjaNeve), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string AnyjaNeveElotagNelkul { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.SzuletesiHely), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string SzuletesiHely { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.SzuletesiIdo), ResourceType = typeof(BeiratkozasResource))]
|
||||
public DateTime SzuletesiIdo { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.OktatasiAzonosito), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string OktatasiAzonosito { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.Tagozat), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string Tagozat_DNAME { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.FelvetelStatusza), ResourceType = typeof(BeiratkozasResource))]
|
||||
public int? FelvetelStatusza { get; set; }
|
||||
|
||||
//public string KozpontiFelvetelStatusza { get; set; } = "F";
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.KirSzinkronizacioStatusza), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string KirSzinkronizacioStatusza { get; set; }
|
||||
|
||||
public string KirKontenerAzonosito { get; set; }
|
||||
|
||||
public string KirKontenerUzenet { get; set; }
|
||||
|
||||
public string KirKontenerElkuldesenekDatumaFormatted { get; set; }
|
||||
|
||||
public string KirKontenerElemStatuszId { get; set; }
|
||||
|
||||
public string KirKontenerElemStatuszUzenet { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.EUgyintezesUgyiratszam), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string EUgyUgyiratszam { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.EUgyStatusz), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string EUgyStatusz { get; set; }
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.EUgyStatuszDatum), ResourceType = typeof(BeiratkozasResource))]
|
||||
public string EUgyStatuszDatum { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue