40 lines
1.6 KiB
C#
40 lines
1.6 KiB
C#
using Kreta.Core.CustomAttributes;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class TavolletAlkalmazottAdatokCo
|
|
{
|
|
#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.Alkalmazott), typeof(HRModulResource))]
|
|
public string AlkalmazottNev { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 01, nameof(HRModulResource.SzTSzAzonosito), typeof(HRModulResource))]
|
|
public string SzTSzAzonosito { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 02, nameof(HRModulResource.FoIntezmenyeE), typeof(HRModulResource))]
|
|
public bool IsFointezmenyeE { get; set; }
|
|
|
|
public string IsFointezmenyeE_BNAME { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 03, nameof(HRModulResource.EvesSzabadsagKeret), typeof(HRModulResource))]
|
|
public int SzabadsagKeret { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 04, nameof(HRModulResource.IgenybeVehetoTavolletek), typeof(HRModulResource))]
|
|
public int IgenybeVehetoTavolletek { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 05, nameof(HRModulResource.IgenybeVettTavolletek), typeof(HRModulResource))]
|
|
public int IgenybeVettTavolletek { get; set; }
|
|
|
|
[SimpleExportColumn(ExportPropertyId, 06, nameof(HRModulResource.FuggobenLevoTavolletek), typeof(HRModulResource))]
|
|
public int FuggobenLevoTavolletek { get; set; }
|
|
}
|
|
}
|