init
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Web.Mvc;
|
||||
using Kreta.Resources;
|
||||
using Kreta.Web.Attributes;
|
||||
using Kreta.Web.Helpers.TabStrip;
|
||||
|
||||
namespace Kreta.Web.Areas.Hianyzas.Models
|
||||
{
|
||||
public class MulasztasIndexModel
|
||||
{
|
||||
[KretaDisplayName(1768)] /*Mulasztási időszak kezdete*/
|
||||
public DateTime? DatumTol { get; set; }
|
||||
|
||||
[KretaDisplayName(1769)] /*Mulasztási időszak vége*/
|
||||
public DateTime? DatumIg { get; set; }
|
||||
|
||||
[Display(Name = nameof(OsztalyCsoportResource.Osztaly), ResourceType = typeof(OsztalyCsoportResource))]
|
||||
public int? OsztalyCsoportId { get; set; }
|
||||
|
||||
[Display(Name = nameof(CommonResource.Csoport), ResourceType = typeof(CommonResource))]
|
||||
public int? CsoportId { get; set; }
|
||||
|
||||
[KretaDisplayName(2568)] /*Igazolt*/
|
||||
public int? IgazoltSearch { get; set; }
|
||||
|
||||
public List<SelectListItem> OsztalyCsoportList { get; set; }
|
||||
|
||||
public List<TabStripItemModel> TabList { get; set; }
|
||||
|
||||
public DateTime IgazolasNaploZarasDatum { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user