39 lines
1.5 KiB
C#
39 lines
1.5 KiB
C#
using System;
|
|
using Kreta.Core.CustomAttributes;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class TavolletListaCo
|
|
{
|
|
#region Fields
|
|
|
|
/// <summary>
|
|
/// Technikai paraméter(ek) a reflection-ös exporthoz.
|
|
/// </summary>
|
|
public const string ExportPropertyId = nameof(ExportPropertyId);
|
|
|
|
#endregion Fields
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 00, nameof(HRModulResource.TavolletOka), typeof(HRModulResource))]
|
|
public string TavolletOka { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 01, nameof(HRModulResource.Alkalmazott), typeof(HRModulResource))]
|
|
public string FoglalkoztatottNeve { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 02, nameof(HRModulResource.SzTSzAzonosito), typeof(HRModulResource))]
|
|
public string SzTSzAzonosito { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 03, nameof(HRModulResource.TavolletKezdet), typeof(HRModulResource))]
|
|
public DateTime IdoszakKezdet { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 04, nameof(HRModulResource.TavolletVeg), typeof(HRModulResource))]
|
|
public DateTime IdoszakVeg { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 05, nameof(HRModulResource.TavolletIdotartamNap), typeof(HRModulResource))]
|
|
public int TavolletIdotartamNap { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 06, nameof(HRModulResource.EvesSzabadsagKeret), typeof(HRModulResource))]
|
|
public int EvesSzabadsagKeret { get; set; }
|
|
}
|
|
}
|