init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.Resources;
|
||||
|
||||
namespace Kreta.Web.Areas.Adminisztracio.Models
|
||||
{
|
||||
public class DiakolimpiaSearchModel
|
||||
{
|
||||
[Display(Name = nameof(AdminisztracioResource.Nev), ResourceType = typeof(AdminisztracioResource))]
|
||||
public string SearchNev { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.SzuletesiDatum), ResourceType = typeof(AdminisztracioResource))]
|
||||
public DateTime? SearchSzuletesiDatumtol { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.SzuletesiDatum), ResourceType = typeof(AdminisztracioResource))]
|
||||
public DateTime? SearchSzuletesiDatumig { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.AnyjaNeve), ResourceType = typeof(AdminisztracioResource))]
|
||||
public string SearchAnyjaNeve { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.Osztaly), ResourceType = typeof(AdminisztracioResource))]
|
||||
public int? SearchOsztalya { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.OktatasiAzonosito), ResourceType = typeof(AdminisztracioResource))]
|
||||
public string SearchOktatasiAzonosito { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue