This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,59 @@
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; }
}
}