kreta/KretaWeb/Areas/Feljegyzes/Models/KozossegiSzolgalatokReszletekGridModel.cs
2024-03-13 00:33:46 +01:00

56 lines
2.2 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using Kreta.BusinessLogic.Interfaces;
using Kreta.Resources;
namespace Kreta.Web.Areas.Feljegyzes.Models
{
public class KozossegiSzolgalatokReszletekGridModel : IKretaIdentity
{
public string ID { get; set; }
public int TanuloId { get; set; }
[Display(Name = nameof(FeljegyzesekResource.IntervallumKezdete), ResourceType = typeof(FeljegyzesekResource))]
public DateTime IntervallumKezdete { get; set; }
[Display(Name = nameof(FeljegyzesekResource.IntervallumVege), ResourceType = typeof(FeljegyzesekResource))]
public DateTime IntervallumVege { get; set; }
[Display(Name = nameof(FeljegyzesekResource.IntezmenyNeve), ResourceType = typeof(FeljegyzesekResource))]
public string TeljesitesiHelye { get; set; }
[Display(Name = nameof(FeljegyzesekResource.Oraszam), ResourceType = typeof(FeljegyzesekResource))]
public double Oraszam { get; set; }
[Display(Name = nameof(FeljegyzesekResource.TanuloNeve), ResourceType = typeof(FeljegyzesekResource))]
public string TanuloNev { get; set; }
[Display(Name = nameof(FeljegyzesekResource.OsztalyNev), ResourceType = typeof(FeljegyzesekResource))]
public string OsztalyNev { get; set; }
[Display(Name = nameof(FeljegyzesekResource.Tevekenyseg), ResourceType = typeof(FeljegyzesekResource))]
public string KozossegiSzolgalatTipusa_DNAME { get; set; }
[Display(Name = nameof(FeljegyzesekResource.Megjegyzes), ResourceType = typeof(FeljegyzesekResource))]
public string Megjegyzes { get; set; }
[Display(Name = nameof(FeljegyzesekResource.RogzitesDatuma), ResourceType = typeof(FeljegyzesekResource))]
public DateTime RogzitesDatuma { get; set; }
[Display(Name = nameof(CommonResource.Ugyiratszam), ResourceType = typeof(CommonResource))]
public string Ugyiratszam { get; set; }
public string Modosithato { get; set; }
public bool Modosithato_BOOL { get; set; }
public string Torolt { get; set; }
public bool Torolt_BOOL { get; set; }
public bool Torolheto_BOOL { get; set; }
}
}