init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,37 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.BusinessLogic.Interfaces;
|
||||
using Kreta.Resources;
|
||||
using Kreta.Web.Attributes;
|
||||
|
||||
namespace Kreta.Web.Areas.Tanar.Models
|
||||
{
|
||||
public class TanarHelyettesitesekKereseseGridModel : IKretaIdentity
|
||||
{
|
||||
public string ID { get; set; }
|
||||
|
||||
[KretaDisplayName(219)] /*Óra*/
|
||||
public int Ora { get; set; }
|
||||
|
||||
[Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))]
|
||||
public string OsztalyCsoportNev { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.Tantargy), ResourceType = typeof(AdminisztracioResource))]
|
||||
public string TantargyNev { get; set; }
|
||||
|
||||
[KretaDisplayName(270)] /*Óra sorszáma*/
|
||||
public int OraSorszama { get; set; }
|
||||
|
||||
[KretaDisplayName(1497)] /*Tanítási óra témája*/
|
||||
public string TanitasiOraTemaja { get; set; }
|
||||
|
||||
[KretaDisplayName(1498)] /*Megtartott*/
|
||||
public string Megtartott_BNAME { get; set; }
|
||||
|
||||
[KretaDisplayName(1499)] /*Helyettesítés*/
|
||||
public string Helyettesites { get; set; }
|
||||
|
||||
[KretaDisplayName(273)] /*Dátum*/
|
||||
public DateTime Datum { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue