26 lines
1 KiB
C#
26 lines
1 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.BusinessLogic.Interfaces;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Web.Areas.Tanulo.Models
|
|
{
|
|
public class TanarTanitottTanulokGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
[Display(Name = nameof(TanuloResource.Tanulo), ResourceType = typeof(TanuloResource))]
|
|
public string TanuloNev { get; set; }
|
|
|
|
[Display(Name = nameof(TanuloResource.Tanulo), ResourceType = typeof(TanuloResource))]
|
|
public string TanuloNevElotagNelkul { get; set; }
|
|
|
|
[Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))]
|
|
public string FoglalkozasNev { get; set; }
|
|
|
|
[Display(Name = nameof(TantargyResource.Tantargy), ResourceType = typeof(TantargyResource))]
|
|
public string TantargyNev { get; set; }
|
|
|
|
[Display(Name = nameof(TanuloResource.FoglalkozasTipus), ResourceType = typeof(TanuloResource))]
|
|
public string Tipus_DNAME { get; set; }
|
|
}
|
|
}
|