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,7 @@
namespace Kreta.Client.KGR.Request
{
public class ApaczaiFellebbezesRequest
{
public string FellebbezesKomment { get; set; }
}
}

View file

@ -0,0 +1,223 @@
using System;
namespace Kreta.Client.KGR.Request
{
public class ApaczaiPalyazatFelvetelRequest
{
public ApaczaiPalyazatFelvetelRequest()
{
Palyazo = new ApaczaiPalyazatPalyazo();
PalyazatMentor = new ApaczaiPalyazatMentor();
}
public ApaczaiPalyazatPalyazo Palyazo { get; set; }
public ApaczaiPalyazatMentor PalyazatMentor { get; set; }
public int TanevId { get; set; }
public int ModositoId { get; set; }
public string ModositoNev { get; set; }
public DateTime HatranyosHelyzetHatarozatDatum { get; set; }
}
public class ApaczaiPalyazatPalyazo
{
public ApaczaiPalyazatPalyazo()
{
Bankszamla = new ApaczaiPalyazatBankszamla();
AllandoElerhetoseg = new ApaczaiPalyazatElerhetoseg();
TartozkodasiElerhetoseg = new ApaczaiPalyazatElerhetoseg();
}
public Guid IdpEgyediAzonosito { get; set; }
public string OktatasiAzonosito { get; set; }
public string FenntartoAzonosito { get; set; }
public string FenntartoNev { get; set; }
public Guid IntezmenyEgyediAzonosito { get; set; }
public string IntezmenyNev { get; set; }
public string IntezmenyAzonosito { get; set; }
public string EloTag { get; set; }
public string CsaladiNev { get; set; }
public string Utonev { get; set; }
public string SzuletesiCsaladNev { get; set; }
public string SzuletesiUtonev { get; set; }
public string AnyjaSzuletesiCsaladiNev { get; set; }
public string AnyjaSzuletesiUtonev { get; set; }
public string Anyanyelv { get; set; }
public string SzuletesiOrszag { get; set; }
public string SzuletesiHely { get; set; }
public DateTime SzuletesiIdo { get; set; }
public string Allampolgarsag { get; set; }
public string Allampolgarsag2 { get; set; }
public ApaczaiPalyazatBankszamla Bankszamla { get; set; }
public ApaczaiPalyazatElerhetoseg AllandoElerhetoseg { get; set; }
public ApaczaiPalyazatElerhetoseg TartozkodasiElerhetoseg { get; set; }
public double? SzamitottAtlag { get; set; }
public double? KeziAtlag { get; set; }
public string AtlagKomment { get; set; }
public string TAJszam { get; set; }
public bool IsSzakkepzesenKivulrolJott { get; set; }
public string Osztaly { get; set; }
public string Evfolyam { get; set; }
}
public class ApaczaiPalyazatBankszamla
{
public string BankszamlaSzam { get; set; }
public string BankszamlaTulajdonosa { get; set; }
public string BankszamlaTulajdonosNeve { get; set; }
public string SzamlavezetoBank { get; set; }
}
public class ApaczaiPalyazatElerhetoseg
{
public string CimTipus { get; set; }
public string Orszag { get; set; }
public string Iranyitoszam { get; set; }
public string HelysegNev { get; set; }
public string KozteruletNev { get; set; }
public string KozteruletTipus { get; set; }
public string Hazszam { get; set; }
public string Emelet { get; set; }
public string Ajto { get; set; }
public string TelefonSzam { get; set; }
public string TelefonTipus { get; set; }
public string Emailcim { get; set; }
public string EmailTipus { get; set; }
}
public class ApaczaiPalyazatMentor
{
public ApaczaiPalyazatMentor()
{
Bankszamla = new ApaczaiPalyazatMentorBankszamla();
Elerhetoseg = new ApaczaiPalyazatMentorElerhetoseg();
}
public string FenntartoAzonosito { get; set; }
public string FenntartoNev { get; set; }
public string LegmagasabbSzintuFenntartoNev { get; set; }
public Guid IntezmenyEgyediAzonosito { get; set; }
public string IntezmenyNev { get; set; }
public string IntezmenyAzonosito { get; set; }
public string IntezmenyVezetoNev { get; set; }
public string OMKod { get; set; }
public ApaczaiPalyazatMentorBankszamla Bankszamla { get; set; }
public ApaczaiPalyazatMentorElerhetoseg Elerhetoseg { get; set; }
public Guid IdpEgyediAzonosito { get; set; }
public string OktatasiAzonosito { get; set; }
public string Nev { get; set; }
public string SzuletesiNev { get; set; }
public string SzuletesiHely { get; set; }
public DateTime SzuletesiIdo { get; set; }
public string AnyjaNeve { get; set; }
public string TAJszam { get; set; }
public string AdoazonositoJel { get; set; }
public string SzTSz { get; set; }
public int? NyugdijTipusId { get; set; }
public string NyugdijTipusNev { get; set; }
public DateTime? NyugdijKezdete { get; set; }
}
public class ApaczaiPalyazatMentorBankszamla
{
public string BankszamlaSzam { get; set; }
public string BankszamlaTulajdonosa { get; set; }
public string BankszamlaTulajdonosNeve { get; set; }
public string SzamlavezetoBank { get; set; }
}
public class ApaczaiPalyazatMentorElerhetoseg
{
public string CimTipus { get; set; }
public string Orszag { get; set; }
public string Iranyitoszam { get; set; }
public string HelysegNev { get; set; }
public string KozteruletNev { get; set; }
public string KozteruletTipus { get; set; }
public string Hazszam { get; set; }
public string Emelet { get; set; }
public string Ajto { get; set; }
public string TelefonSzam { get; set; }
public string TelefonTipus { get; set; }
public string Emailcim { get; set; }
public string EmailTipus { get; set; }
}
}

View file

@ -0,0 +1,10 @@
using Newtonsoft.Json;
namespace Kreta.Client.KGR.Request
{
public class ApaczaiUploadFileRequest : BaseApaczaiUploadFileRequest
{
[JsonProperty("Content")]
public string Base64EncodedFile { get; set; }
}
}

View file

@ -0,0 +1,10 @@
using Newtonsoft.Json;
namespace Kreta.Client.KGR.Request
{
public class ApaczaiUploadFileRequestBinary : BaseApaczaiUploadFileRequest
{
[JsonProperty("Content")]
public byte[] File { get; set; }
}
}

View file

@ -0,0 +1,19 @@
using Newtonsoft.Json;
namespace Kreta.Client.KGR.Request
{
public class BaseApaczaiUploadFileRequest
{
[JsonProperty("FileNameWithExtension")]
public string PostedFileName { get; set; }
[JsonIgnore]
public string PostedFileContentType { get; set; }
[JsonProperty("FileTypeId")]
public int PostedFileCategory { get; set; }
[JsonProperty("ESZATipus")]
public string ApaczaiDokumentumTipus { get; set; }
}
}

View file

@ -0,0 +1,10 @@
namespace Kreta.Client.KGR.Request
{
public class EszkozHeaderRequest
{
public string IntezmenyGuid { get; set; }
public string IntezmenyAzonosito { get; set; }
public string Sztsz { get; set; }
}
}

View file

@ -0,0 +1,13 @@
namespace Kreta.Client.KGR.Request
{
public class IntezmenyiBeszerzesVisszavonasRequest
{
public int Id { get; set; }
public string IdpEgyediAzonosito { get; set; }
public string OktatasiAzonosito { get; set; }
public string IntezmenyEgyediAzonosito { get; set; }
public string EloTag { get; set; }
public string CsaladiNev { get; set; }
public string Utonev { get; set; }
}
}

View file

@ -0,0 +1,12 @@
namespace Kreta.Client.KGR.Request
{
public class ProjektHeaderRequest
{
public string IntezmenyGuid { get; set; }
public int AlkalmazottId { get; set; }
public string OktatasiAzonosito { get; set; }
public string AlkalmazottNev { get; set; }
public string IDPEgyediazonosito { get; set; }
}
}