41 lines
1.4 KiB
C#
41 lines
1.4 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.BusinessLogic.Interfaces;
|
|
using Kreta.Resources;
|
|
using Kreta.Web.Attributes;
|
|
|
|
namespace Kreta.Web.Areas.Intezmeny.Models
|
|
{
|
|
public class IntezmenyMukodesiHelyGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
public int? IntezmenyMukodesiHelyId { get; set; }
|
|
public int? FeladatEllatasiHelyID { get; set; }
|
|
|
|
[KretaDisplayName(1992)] /*Tagintézmény*/
|
|
public bool Tagintezmeny_BOOL { get; set; }
|
|
|
|
[KretaDisplayName(1992)] /*Tagintézmény*/
|
|
public string Tagintezmeny_BNAME { get; set; }
|
|
|
|
[KretaDisplayName(3249)] /*Működési hely neve*/
|
|
public string Nev { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.MukodesiHelyAzonosito), ResourceType = typeof(IntezmenyResource))]
|
|
public string MukodesiHelyAzonosito { get; set; }
|
|
|
|
[KretaDisplayName(63)] /*Irányítószám*/
|
|
public int? Iranyitoszam { get; set; }
|
|
|
|
[KretaDisplayName(475)] /*Város*/
|
|
public string Varos { get; set; }
|
|
|
|
[KretaDisplayName(66)] /*Telefonszám*/
|
|
public string Telefon { get; set; }
|
|
|
|
[KretaDisplayName(264)] /*E-mail cím*/
|
|
public string Email { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.MukodesiHelyTipusa), ResourceType = typeof(IntezmenyResource))]
|
|
public string C_MUKODESIHELYTIPUSA_DNAME { get; set; }
|
|
}
|
|
}
|