36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.BusinessLogic.Interfaces;
|
|
using Kreta.Resources;
|
|
using Kreta.Web.Attributes;
|
|
|
|
namespace Kreta.Web.Areas.Adatszolgaltatasok.Models
|
|
{
|
|
public class TTFGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
[KretaDisplayName(1566)/*Munkavállaló Neve*/]
|
|
public string Tanar { get; set; }
|
|
|
|
[KretaDisplayName(1566)/*Munkavállaló Neve*/]
|
|
public string TanarElotagNelkul { get; set; }
|
|
|
|
[KretaDisplayName(450)/*Tanév*/]
|
|
public string Tanev { get; set; }
|
|
|
|
[Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))]
|
|
public string OsztalyCsoport { get; set; }
|
|
|
|
[Display(Name = nameof(AdminisztracioResource.Tantargy), ResourceType = typeof(AdminisztracioResource))]
|
|
public string Tantargy { get; set; }
|
|
|
|
[KretaDisplayName(1620)/*Foglalkozás típus*/]
|
|
public string FoglalkozasTipusa_DNAME { get; set; }
|
|
|
|
[KretaDisplayName(254)/*Heti óraszám*/]
|
|
public int Oraszam { get; set; }
|
|
|
|
[KretaDisplayName(442)/*Évfolyam*/]
|
|
public string EvfolyamTipus_DNAME { get; set; }
|
|
}
|
|
}
|