59 lines
1.5 KiB
C#
59 lines
1.5 KiB
C#
using System;
|
|
|
|
namespace Kreta.DataAccessManual.ParameterClasses
|
|
{
|
|
public class AlkalmazottMunkaugyiAdatokImportPco
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int? BesorolasiFokozat { get; set; }
|
|
|
|
public int? MunkakorTipusa { get; set; }
|
|
|
|
public int? MunkaviszonyTipusa { get; set; }
|
|
|
|
public double KotelezoOraszam { get; set; }
|
|
|
|
public double? MunkaidoKedvezmenyOraszam { get; set; }
|
|
|
|
public int? MunkaidoKedvezmenyOka { get; set; }
|
|
|
|
public DateTime? AlkalmazasKezdete { get; set; }
|
|
|
|
public int? FoglalkoztatasTipus { get; set; }
|
|
|
|
public int? VezetoiOraszamOka { get; set; }
|
|
|
|
public int FeladatEllatasiHelyId { get; set; }
|
|
|
|
public bool AllandoHelyettesitesre { get; set; }
|
|
|
|
public bool TartosHelyettesites { get; set; }
|
|
|
|
public bool BetoltetlenAllashely { get; set; }
|
|
|
|
public bool IsKulsoAlkalmazott { get; set; }
|
|
|
|
public bool Nyugdijas { get; set; }
|
|
|
|
public bool Attanito { get; set; }
|
|
|
|
public string AdoazonositoJel { get; set; }
|
|
|
|
public bool Foallas { get; set; }
|
|
|
|
public bool SzakertoiVizsgaelnoki { get; set; }
|
|
|
|
public bool Szakvizsga { get; set; }
|
|
|
|
public string OktatasiAzonosito { get; set; }
|
|
|
|
public bool Tovabbkepzes { get; set; }
|
|
|
|
public bool SzakertoMesterpedagogus { get; set; }
|
|
|
|
public bool IsSzakertoKutatotanar { get; set; }
|
|
|
|
public bool IsAttanitoMasIntezmenynel { get; set; }
|
|
}
|
|
}
|