34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|