This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,36 @@
using System;
using System.ComponentModel.DataAnnotations;
using Kreta.Resources;
using Kreta.Web.Attributes;
namespace Kreta.Web.Areas.Tanar.Models
{
public class OralatogatasokKereseseAdatModel
{
public DateTime Date { get; set; }
[KretaDisplayName(273)] /*Dátum*/
public string DateString { get { return Date.ToShortDateString(); } }
[KretaDisplayName(219)] /*Óra*/
public int Ora { get; set; }
[KretaDisplayName(1704)] /*Óralátogatást végző*/
public string Tanar { get; set; }
[KretaDisplayName(1705)] /*Óralátogatást végző beosztása*/
public string Beosztas { get; set; }
[Display(Name = nameof(OralatogatasokResource.LatogatottPedagogus), ResourceType = typeof(OralatogatasokResource))]
public string LatogatottPedagogus { get; set; }
[Display(Name = nameof(AdminisztracioResource.Tantargy), ResourceType = typeof(AdminisztracioResource))]
public string Tantargy { get; set; }
[Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))]
public string OsztalyCsoport { get; set; }
[KretaDisplayName(97)] /*Megjegyzés*/
public string Megjegyzes { get; set; }
}
}