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,6 @@
namespace Kreta.Client.KGR.Model
{
public class ApaczaiHibaModel : BaseHibaModel
{
}
}

View file

@ -0,0 +1,11 @@
using System;
using System.Runtime.Serialization;
namespace Kreta.Client.KGR.Model
{
[Serializable]
[DataContract]
public class ApaczaiHibaResponseModel : BaseHibaResponseModel
{
}
}

View file

@ -0,0 +1,19 @@
using System;
namespace Kreta.Client.KGR.Model
{
public class ApaczaiIgenylesModel
{
public int Id { get; set; }
public int StatuszId { get; set; }
public string StatuszNev { get; set; }
public DateTime Letrehozva { get; set; }
public double Osszeg { get; set; }
public ApaczaiPalyazoModel Palyazo { get; set; }
}
}

View file

@ -0,0 +1,6 @@
namespace Kreta.Client.KGR.Model
{
public class ApaczaiKifizetesModel
{
}
}

View file

@ -0,0 +1,35 @@
using System;
using Kreta.Client.KGR.Request;
namespace Kreta.Client.KGR.Model
{
public class ApaczaiPalyazatModel
{
public int Id { get; set; }
public ApaczaiPalyazatPalyazo Palyazo { get; set; }
public int TanevId { get; set; }
public int StatuszId { get; set; }
public string StatuszNev { get; set; }
public DateTime? Letrehozva { get; set; }
public string StatuszKomment { get; set; }
public string EllenorzesrolAdategyeztetesreVisszakuldveKomment { get; set; }
public string FelulvizsgalatrolAdategyeztetesreVisszakuldveKomment { get; set; }
public string StatuszIktatasiSzam { get; set; }
public string StatuszErkeztetesiSzam { get; set; }
public DateTime? FellebbezesHatarido { get; set; }
public DateTime HatranyosHelyzetHatarozatDatum { get; set; }
}
public class ApaczaiPalyazatDokumentumModel
{
public int Id { get; set; }
public Guid IdpEgyediAzonosito { get; set; }
public Guid FileServiceEgyediAzonosito { get; set; }
public string FileServiceUtvonal { get; set; }
public int ApaczaiFileTipusId { get; set; }
public string ApaczaiFileTipusnev { get; set; }
public int Meret { get; set; }
public DateTime Letrehozva { get; set; }
public string EszaTipus { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
namespace Kreta.Client.KGR.Model
{
public class ApaczaiPalyazatTortenetModel
{
public string Cim { get; set; }
public DateTime Datum { get; set; }
public string Megjegyzes { get; set; }
public int StatuszId { get; set; }
}
}

View file

@ -0,0 +1,17 @@
using System;
namespace Kreta.Client.KGR.Model
{
public class ApaczaiPalyazoModel
{
public Guid IdpEgyediAzonosito { get; set; }
public string OktatasiAzonosito { get; set; }
public string CsaladiNev { get; set; }
public string Utonev { get; set; }
public DateTime SzuletesiIdo { get; set; }
}
}

View file

@ -0,0 +1,31 @@
using System.Collections.Generic;
namespace Kreta.Client.KGR.Model
{
public class BaseHibaModel
{
public string Exception { get; set; }
public BaseHibaValidationResult ValidationResult { get; set; }
public string CorrelationId { get; set; }
public string Type { get; set; }
public string Title { get; set; }
public string Status { get; set; }
public string Detail { get; set; }
public string Instance { get; set; }
public Dictionary<string, List<string>> Errors { get; set; }
}
public class BaseHibaValidationResult
{
public List<BaseHibaValidationResultDetail> Tiltasok { get; set; }
public List<BaseHibaValidationResultDetail> Figyelmeztetesek { get; set; }
public List<BaseHibaValidationResultDetail> Engedelyezettek { get; set; }
}
public class BaseHibaValidationResultDetail
{
public int? Id { get; set; }
public string Nev { get; set; }
public string Uzenet { get; set; }
}
}

View file

@ -0,0 +1,17 @@
using System;
using System.Runtime.Serialization;
namespace Kreta.Client.KGR.Model
{
[Serializable]
[DataContract]
public class BaseHibaResponseModel
{
[DataMember]
public string Uzenet { get; set; }
[DataMember]
public string MegjelenitendoHiba { get; set; }
[DataMember]
public string NemMegjelenitendoHiba { get; set; }
}
}

View file

@ -0,0 +1,22 @@
using System;
namespace Kreta.Client.KGR.Model
{
public class EszkozModel
{
public string Vallalat { get; set; }
public string VallalatNev { get; set; }
public int FenntartoAzonosito { get; set; }
public string FenntartoNev { get; set; }
public string IntezmenyAzonosito { get; set; }
public string IntezmenyNev { get; set; }
public int AlkalmazottId { get; set; }
public string AlkalmazottNev { get; set; }
public string SztszAzonosito { get; set; }
public string Leltarszam { get; set; }
public string GyariSzam { get; set; }
public string Megnevezes { get; set; }
public DateTime? AktivalasDatum { get; set; }
public DateTime? DeaktivalasDatum { get; set; }
}
}

View file

@ -0,0 +1,20 @@
namespace Kreta.Client.KGR.Model
{
public class IntezmenyiBeszerzesAdatszotarAllapotModel
{
public int Id { get; set; }
public string Nev { get; set; }
public int Sorszam { get; set; }
public int KategoriaId { get; set; }
public string SzinKod { get; set; }
public bool Aktiv { get; set; }
public bool Modosithato { get; set; }
public bool Torolheto { get; set; }
public bool Lathato { get; set; }
public string RovidNev { get; set; }
public string AliasNev { get; set; }
public string Leiras { get; set; }
public string Megjegyzes { get; set; }
public string MimeTipus { get; set; }
}
}

View file

@ -0,0 +1,20 @@
namespace Kreta.Client.KGR.Model
{
public class IntezmenyiBeszerzesAdatszotarTargyModel
{
public int Id { get; set; }
public string Nev { get; set; }
public int Sorszam { get; set; }
public int KategoriaId { get; set; }
public string SzinKod { get; set; }
public bool Aktiv { get; set; }
public bool Modosithato { get; set; }
public bool Torolheto { get; set; }
public bool Lathato { get; set; }
public string RovidNev { get; set; }
public string AliasNev { get; set; }
public string Leiras { get; set; }
public string Megjegyzes { get; set; }
public string MimeTipus { get; set; }
}
}

View file

@ -0,0 +1,6 @@
namespace Kreta.Client.KGR.Model
{
public class IntezmenyiBeszerzesHibaModel : BaseHibaModel
{
}
}

View file

@ -0,0 +1,11 @@
using System;
using System.Runtime.Serialization;
namespace Kreta.Client.KGR.Model
{
[Serializable]
[DataContract]
public class IntezmenyiBeszerzesHibaResponseModel : BaseHibaResponseModel
{
}
}

View file

@ -0,0 +1,26 @@
namespace Kreta.Client.KGR.Model
{
public class IntezmenyiBeszerzesModel
{
public int? Id { get; set; }
public int? TargyId { get; set; }
public string TargyNev { get; set; }
public double VarhatoEllenertekBrutto { get; set; }
public string IdpEgyediAzonosito { get; set; }
public string EloTag { get; set; }
public string CsaladiNev { get; set; }
public string Utonev { get; set; }
public int? TanevId { get; set; }
public string TanevNev { get; set; }
public int AllapotId { get; set; }
public string AllapotNev { get; set; }
public string Sorszam { get; set; }
public string Leiras { get; set; }
public string VisMajorIndok { get; set; }
public string OktatasiAzonosito { get; set; }
public string IntezmenyEgyediAzonosito { get; set; }
public string LetrehozoEmail { get; set; }
public string ModositasiKerelem { get; set; }
public string ElutasitasOka { get; set; }
}
}

View file

@ -0,0 +1,7 @@
namespace Kreta.Client.KGR.Model
{
public class IntezmenyiBeszerzesVisszavonasModel
{
public int Id { get; set; }
}
}

View file

@ -0,0 +1,16 @@
using System;
namespace Kreta.Client.KGR.Model
{
public class ProjektJelentkezesModel
{
public Guid IntezmenyId { get; set; }
public string OktatasiAzonosito { get; set; }
public Guid IdpEgyediazonosito { get; set; }
public bool Retrieve { get; set; }
public string AlkalmazottNev { get; set; }
public int ProjektId { get; set; }
public int AlkalmazottId { get; set; }
public bool IsJelentkezett { get; set; }
}
}

View file

@ -0,0 +1,24 @@
using System;
namespace Kreta.Client.KGR.Model
{
public class ProjektModel
{
public int Id { get; set; }
public string Azonosito { get; set; }
public string Nev { get; set; }
public DateTime Kezdete { get; set; }
public DateTime Vege { get; set; }
public DateTime TSZTOMegkotesDatum { get; set; }
public bool Kerdoiv { get; set; }
public int Merfoldkovek { get; set; }
public int TeruletiHataly { get; set; }
public string TeruletiHatalyNev { get; set; }
public DateTime? JelentkezesHataridoKezdet { get; set; }
public DateTime? JelentkezesHataridoVeg { get; set; }
public bool IsJelentkezett { get; set; }
public bool IsVisszautasitott { get; set; }
public int? JelentkezokSzama { get; set; }
public bool IsElfogadott { get; set; }
}
}