34 lines
1.5 KiB
C#
34 lines
1.5 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.BusinessLogic.HelperClasses;
|
|
using Kreta.BusinessLogic.Interfaces;
|
|
using Kreta.Core.CustomAttributes;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Web.Areas.Adatszolgaltatasok.Models
|
|
{
|
|
public class NemAllamiIntOktKoltsegvetesGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.MukodesiHelyAzonosito), ResourceType = typeof(IntezmenyResource))]
|
|
public string MukodesiHelyAzonosito { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.MukodesiHelyNeve), ResourceType = typeof(IntezmenyResource))]
|
|
public string MukodesihelyNeve { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.MukodesiHelyCime), ResourceType = typeof(IntezmenyResource))]
|
|
public string MukodesihelyCime { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.EllatottFeladat), ResourceType = typeof(IntezmenyResource))]
|
|
public string EllatottFeladat { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.BevetelekOsszesen), ResourceType = typeof(IntezmenyResource))]
|
|
public int BevetelOsszesen { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.KiadasokOsszesen), ResourceType = typeof(IntezmenyResource))]
|
|
public int KiadasOsszesen { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.SzemelyiJelleguKifizetesekOsszesen), ResourceType = typeof(IntezmenyResource))]
|
|
public int SzemelyiJelleguKifizetesek { get; set; }
|
|
}
|
|
}
|