init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
6
Kreta.Client/KGR/Model/ApaczaiHibaModel.cs
Normal file
6
Kreta.Client/KGR/Model/ApaczaiHibaModel.cs
Normal file
|
@ -0,0 +1,6 @@
|
|||
namespace Kreta.Client.KGR.Model
|
||||
{
|
||||
public class ApaczaiHibaModel : BaseHibaModel
|
||||
{
|
||||
}
|
||||
}
|
11
Kreta.Client/KGR/Model/ApaczaiHibaResponseModel.cs
Normal file
11
Kreta.Client/KGR/Model/ApaczaiHibaResponseModel.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Kreta.Client.KGR.Model
|
||||
{
|
||||
[Serializable]
|
||||
[DataContract]
|
||||
public class ApaczaiHibaResponseModel : BaseHibaResponseModel
|
||||
{
|
||||
}
|
||||
}
|
19
Kreta.Client/KGR/Model/ApaczaiIgenylesModel.cs
Normal file
19
Kreta.Client/KGR/Model/ApaczaiIgenylesModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
6
Kreta.Client/KGR/Model/ApaczaiKifizetesModel.cs
Normal file
6
Kreta.Client/KGR/Model/ApaczaiKifizetesModel.cs
Normal file
|
@ -0,0 +1,6 @@
|
|||
namespace Kreta.Client.KGR.Model
|
||||
{
|
||||
public class ApaczaiKifizetesModel
|
||||
{
|
||||
}
|
||||
}
|
35
Kreta.Client/KGR/Model/ApaczaiPalyazatModel.cs
Normal file
35
Kreta.Client/KGR/Model/ApaczaiPalyazatModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
15
Kreta.Client/KGR/Model/ApaczaiPalyazatTortenetModel.cs
Normal file
15
Kreta.Client/KGR/Model/ApaczaiPalyazatTortenetModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
17
Kreta.Client/KGR/Model/ApaczaiPalyazoModel.cs
Normal file
17
Kreta.Client/KGR/Model/ApaczaiPalyazoModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
31
Kreta.Client/KGR/Model/BaseHibaModel.cs
Normal file
31
Kreta.Client/KGR/Model/BaseHibaModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
17
Kreta.Client/KGR/Model/BaseHibaResponseModel.cs
Normal file
17
Kreta.Client/KGR/Model/BaseHibaResponseModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
22
Kreta.Client/KGR/Model/EszkozModel.cs
Normal file
22
Kreta.Client/KGR/Model/EszkozModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
|
@ -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; }
|
||||
}
|
||||
}
|
|
@ -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; }
|
||||
}
|
||||
}
|
6
Kreta.Client/KGR/Model/IntezmenyiBeszerzesHibaModel.cs
Normal file
6
Kreta.Client/KGR/Model/IntezmenyiBeszerzesHibaModel.cs
Normal file
|
@ -0,0 +1,6 @@
|
|||
namespace Kreta.Client.KGR.Model
|
||||
{
|
||||
public class IntezmenyiBeszerzesHibaModel : BaseHibaModel
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Kreta.Client.KGR.Model
|
||||
{
|
||||
[Serializable]
|
||||
[DataContract]
|
||||
public class IntezmenyiBeszerzesHibaResponseModel : BaseHibaResponseModel
|
||||
{
|
||||
}
|
||||
}
|
26
Kreta.Client/KGR/Model/IntezmenyiBeszerzesModel.cs
Normal file
26
Kreta.Client/KGR/Model/IntezmenyiBeszerzesModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
namespace Kreta.Client.KGR.Model
|
||||
{
|
||||
public class IntezmenyiBeszerzesVisszavonasModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
}
|
||||
}
|
16
Kreta.Client/KGR/Model/ProjektJelentkezesModel.cs
Normal file
16
Kreta.Client/KGR/Model/ProjektJelentkezesModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
24
Kreta.Client/KGR/Model/ProjektModel.cs
Normal file
24
Kreta.Client/KGR/Model/ProjektModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue