24 lines
745 B
C#
24 lines
745 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.BusinessLogic.Interfaces;
|
|
using Kreta.Resources;
|
|
using Kreta.Web.Attributes;
|
|
|
|
namespace Kreta.Web.Areas.OsztalyCsoport.Models
|
|
{
|
|
public class FoglalkozasGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
[Display(Name = nameof(AdminisztracioResource.Tantargy), ResourceType = typeof(AdminisztracioResource))]
|
|
public string Tantargy { get; set; }
|
|
|
|
[KretaDisplayName(2614)] /*Oktató*/
|
|
public string Tanar { get; set; }
|
|
|
|
[KretaDisplayName(254)] /*Heti óraszám*/
|
|
public string Oraszam { get; set; }
|
|
|
|
[KretaDisplayName(255)] /*Foglalkozás típusa*/
|
|
public string Tipus_DNAME { get; set; }
|
|
}
|
|
}
|