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,48 @@
using System;
namespace Kreta.Eugyintezes.Domain.Model.Dto
{
public class AlkalmazottAdatokDto
{
public int KretaAzonosito { get; set; }
public string EgyediAzonosito { get; set; }
public Guid IdpEgyediAzonosito { get; set; }
public bool IsIgazgato { get; set; }
public bool IsIgazgatoHelyettes { get; set; }
public bool IsOsztalyfonok { get; set; }
public bool IsOsztalyfonokHelyettes { get; set; }
public bool IsAdmin { get; set; }
public bool IsTanar { get; set; }
public bool IsNoks { get; set; }
public bool IsEgyeb { get; set; }
public string Nev { get; set; }
public string Titulus { get; set; }
public string OktatasiAzonosito { get; set; }
public string Osztaly { get; set; }
public string FunkcioTeruletSAPKod { get; set; }
}
public class OsztalyFonokAdatokDto
{
public int KretaAzonosito { get; set; }
public string EgyediAzonosito { get; set; }
public Guid IdpEgyediAzonosito { get; set; }
public bool IsOsztalyfonok { get; set; }
public bool IsOsztalyfonokHelyettes { get; set; }
public string Nev { get; set; }
public string Titulus { get; set; }
public string Osztaly { get; set; }
}
public class VezetokEsTanarokDto
{
public int KretaAzonosito { get; set; }
public bool IsAlairo { get; set; }
public string Nev { get; set; }
public string Titulus { get; set; }
public bool IsTorolt { get; set; }
public string OktatasiAzonosito { get; set; }
public string EgyediAzonosito { get; set; }
public Guid IdpEgyediAzonosito { get; set; }
}
}