77 lines
2.1 KiB
C#
77 lines
2.1 KiB
C#
using System;
|
|
|
|
namespace Kreta.Web.Areas.Adminisztracio.Models
|
|
{
|
|
public class AdminDashboardAdminisztracioModel : AdminDashboardAbstarctModel
|
|
{
|
|
public bool isKlebelsberg { get; set; }
|
|
|
|
public int NincsAktivCsengetesiRend { get; set; }
|
|
|
|
public int NincsAllampolgarsagaTanulo { get; set; }
|
|
|
|
public int NincsAnyanyelvTanulo { get; set; }
|
|
|
|
public int NincsBesorolasiFokozatAlkalmazott { get; set; }
|
|
|
|
public int NincsEvfolyamCsoport { get; set; }
|
|
|
|
public int NincsEvfolyamOsztaly { get; set; }
|
|
|
|
public int NincsFeladatellatasiHelyMukodesiHely { get; set; }
|
|
|
|
public int NincsFeladatellatasiHelyTipus { get; set; }
|
|
|
|
public int NincsKategoriaTantargy { get; set; }
|
|
|
|
public int NincsMunkakorAlkalmazott { get; set; }
|
|
|
|
public int NincsMunkaviszonyTipusAlkalmazott { get; set; }
|
|
|
|
public int NincsNemAlkalmazott { get; set; }
|
|
|
|
public int NincsNemTanulo { get; set; }
|
|
|
|
public int NincsOsztalybaSorolvaTanulo { get; set; }
|
|
|
|
public int NincsOsztalyOsztalyfonok { get; set; }
|
|
|
|
public int NincsSzakmacsoportTanulo { get; set; }
|
|
|
|
public int NincsTipusCsoport { get; set; }
|
|
|
|
public int UresCsoport { get; set; }
|
|
|
|
public int UresOsztaly { get; set; }
|
|
|
|
public int NSzFHRosszMunkakor { get; set; }
|
|
|
|
public DateTime? LicenceDatum { get; set; }
|
|
|
|
public int NincsEmailAlkalmazott { get; set; }
|
|
|
|
public int NincsAlkalmazottSZTSZ { get; set; }
|
|
|
|
public int HibasanRogzitettOktatasiAzonositok { get; set; }
|
|
|
|
public int HibasanRogzitettTajSzamok { get; set; }
|
|
|
|
public int HibasanRogzitettAdoazonositoJelek { get; set; }
|
|
|
|
public bool IsLEPModulEngedelyezett { get; set; }
|
|
|
|
public bool VanHibasEmailCim { get; set; }
|
|
|
|
public int VanKettosOsztalybesorolas { get; set; }
|
|
|
|
/// <summary>
|
|
/// Covid fertőzöttek
|
|
/// </summary>
|
|
public bool VanCovidFertozott { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gondviselő által bejelentettek
|
|
/// </summary>
|
|
public bool VanCovidBejelentett { get; set; }
|
|
}
|
|
}
|