48 lines
1.7 KiB
C#
48 lines
1.7 KiB
C#
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; }
|
|
}
|
|
}
|