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,11 @@
using System.Collections.Generic;
namespace Kreta.Client.KozpontiKreta.Model
{
public class KotelezoOraszamRequestModel
{
public string IntezmenyAzonosito { get; set; }
public int TanevId { get; set; }
public List<int> AlkalmazottLista { get; set; }
}
}

View file

@ -0,0 +1,22 @@
using System.Collections.Generic;
namespace Kreta.Client.KozpontiKreta.Model
{
public class KotelezoOraszamResponseModel
{
public string IntezmenyAzonosito { get; set; }
public int TanevId { get; set; }
public List<KotelezoOraszamAlkalmazottResponseModel> AlkalmazottLista { get; set; }
}
public class KotelezoOraszamAlkalmazottResponseModel
{
public int AlkalmazottId { get; set; }
public string OktatasiAzonosito { get; set; }
public string SzTSzAzonosito { get; set; }
public string Adoszam { get; set; }
public string KotelezoOraszamSzoveg { get; set; }
public float KotelezoOraszamMin { get; set; }
public float KotelezoOraszamMax { get; set; }
}
}

View file

@ -0,0 +1,8 @@
namespace Kreta.Client.KozpontiKreta.Model
{
public class KozpontiNebuloEngedelyezettRequestModel
{
public string IntezmenyAzonosito { get; set; }
public int TanevId { get; set; }
}
}

View file

@ -0,0 +1,9 @@
public class KozpontiNebuloEngedelyezettResponseModel
{
public string IntezmenyAzonosito { get; set; }
public int TanevId { get; set; }
public int? EngedelyezettOsztalyLetszam { get; set; }
public int? EngedelyezettOsztaly { get; set; }
public int? EngedelyezettOsszevontOsztalyLetszam { get; set; }
public int? EngedelyezettOsszevontOsztaly { get; set; }
}

View file

@ -0,0 +1,21 @@
using System;
namespace Kreta.Client.KozpontiKreta.Model
{
public class KozpontiNebuloRequestModel
{
public string IntezmenyAzonosito { get; set; }
public int NebuloId { get; set; }
public string NebuloVezeteknev { get; set; }
public string NebuloUtonev { get; set; }
public string AnyjaSzuletesiVezeteknev { get; set; }
public string AnyjaSzuletesiUtonev { get; set; }
public string SzuletesiHely { get; set; }
public DateTime SzuletesiIdo { get; set; }
public bool Importalt { get; set; }
public bool EugyBAIRogzitett { get; set; }
public int? FelvetelStatuszId { get; set; }
public bool Torolt { get; set; }
public int Tipus { get; set; }
}
}

View file

@ -0,0 +1,7 @@
public class KozpontiNebuloResponseModel
{
public string IntezmenyAzonosito { get; set; }
public bool Sikeres { get; set; }
public int StatuszKod { get; set; }
public string StatuszUzenet { get; set; }
}

View file

@ -0,0 +1,18 @@
using System;
namespace Kreta.Client.KozpontiKreta.Model
{
public class ProjektResponseModel
{
public string ID { get; set; }
public bool IsJelentkezheto { get; set; }
public bool IsJelentkezett { get; set; }
public string ProjektAzonosito { get; set; }
public string ProjektNeve { get; set; }
public DateTime? ProjektKezdete { get; set; }
public DateTime? ProjektVege { get; set; }
public DateTime? TSZTOMegkotesDatum { get; set; }
public DateTime JelentkezesiHatarido { get; set; }
}
}

View file

@ -0,0 +1,43 @@
namespace Kreta.Client.KozpontiKreta.Model
{
public class TantargyFelosztasResponse
{
public int IntezmenyId { get; set; }
public int? SearchOsztalyCsoport { get; set; }
public int? SearchTantargy { get; set; }
public int? SearchTanar { get; set; }
public int? SearchEvfolyam { get; set; }
public int? SearchTanev { get; set; }
public double? SearchOraszam { get; set; }
public int? SearchFeladatellatasihely { get; set; }
public int? SearchFoglalkozasTipusa { get; set; }
public bool ElfogadottTTF { get; set; }
public bool ElfogadottESL { get; set; }
public bool VeglegesTTF { get; set; }
public bool VeglegesESL { get; set; }
public bool VeglegesETTF { get; set; }
public bool Islocked { get; set; }
public int StatusCode { get; set; }
public string RegNumber { get; set; }
public string StatusTitle { get; set; }
public string StatusText { get; set; }
}
}