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,10 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Request
{
public class AllomanyReszRequest : EftRequest
{
[XmlElement(ElementName = "allomanyReszRequestBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public AllomanyReszRequestBusinessContent AllomanyReszRequestBusinessContent { get; set; }
}
}

View file

@ -0,0 +1,15 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Request
{
public class AllomanyReszRequestBusinessContent
{
[XmlElement(ElementName = "allomanyPublikusId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public Guid AllomanyPublikusId { get; set; }
[XmlElement(ElementName = "cimzettId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string CimzettId { get; set; }
[XmlElement(ElementName = "allomanyReszSorszam", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public int AllomanyReszSorszam { get; set; }
}
}

View file

@ -0,0 +1,13 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Request
{
[Serializable]
[XmlRoot(ElementName = "getAllomanyResz", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
public class GetAllomanyResz
{
[XmlElement(ElementName = "allomanyReszRequest", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public AllomanyReszRequest AllomanyReszRequest { get; set; }
}
}

View file

@ -0,0 +1,10 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
{
public class Adat
{
[XmlElement(ElementName = "Include", Namespace = Namespaces.xopNS)]
public Include Include { get; set; }
}
}

View file

@ -0,0 +1,20 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
{
public class AllomanyResz
{
[XmlElement(ElementName = "publikusId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public Guid PublikusId { get; set; }
[XmlElement(ElementName = "sorszam", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public int Sorszam { get; set; }
[XmlElement(ElementName = "adat", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public Adat Adat { get; set; }
[XmlElement(ElementName = "hash", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string Hash { get; set; }
[XmlElement(ElementName = "meretByte", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public int MeretByte { get; set; }
}
}

View file

@ -0,0 +1,11 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
{
public class AllomanyReszResponse : EftResponse
{
[XmlElement(ElementName = "allomanyReszResponseBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public AllomanyReszResponseBusinessContent AllomanyReszResponseBusinessContent { get; set; }
}
}

View file

@ -0,0 +1,10 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
{
public class AllomanyReszResponseBusinessContent
{
[XmlElement(ElementName = "allomanyResz", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public AllomanyResz AllomanyResz { get; set; }
}
}

View file

@ -0,0 +1,14 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
{
[Serializable]
[XmlRoot(ElementName = "getAllomanyReszResponse", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
public class GetAllomanyReszResponse
{
[XmlElement(ElementName = "allomanyReszResponse", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public AllomanyReszResponse AllomanyReszResponse { get; set; }
}
}

View file

@ -0,0 +1,12 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.AllomanyResz.Response
{
[XmlType(TypeName = "Include", Namespace = Namespaces.xopNS)]
public class Include
{
[XmlAttribute(AttributeName = "href", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string Href { get; set; }
}
}

View file

@ -0,0 +1,14 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model
{
public class BusinessMessageHeader
{
[XmlElement(ElementName = "initiator", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public Initiator Initiator { get; set; }
[XmlElement(ElementName = "representedUser", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public RepresentedUser RepresentedUser { get; set; }
[XmlElement(ElementName = "logging", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public Logging Logging { get; set; }
}
}

View file

@ -0,0 +1,10 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model
{
public abstract class EftRequest
{
[XmlElement(ElementName = "businessMessageHeader", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public BusinessMessageHeader BusinessMessageHeader { get; set; }
}
}

View file

@ -0,0 +1,12 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model
{
public abstract class EftResponse
{
[XmlElement(ElementName = "businessMessageHeader", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public BusinessMessageHeader BusinessMessageHeader { get; set; }
[XmlElement(ElementName = "status", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string Status { get; set; }
}
}

View file

@ -0,0 +1,24 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model
{
public class Initiator
{
[XmlElement(ElementName = "userId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string UserId { get; set; }
[XmlElement(ElementName = "userName", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string UserName { get; set; }
[XmlElement(ElementName = "clientUserId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string ClientUserId { get; set; }
[XmlElement(ElementName = "applicationId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string ApplicationId { get; set; }
[XmlElement(ElementName = "applicationName", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string ApplicationName { get; set; }
[XmlElement(ElementName = "applicationFunction", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string ApplicationFunction { get; set; }
[XmlElement(ElementName = "organizationId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string OrganizationId { get; set; }
[XmlElement(ElementName = "organizationUnitId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string OrganizationUnitId { get; set; }
}
}

View file

@ -0,0 +1,13 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Request
{
[Serializable]
[XmlRoot(ElementName = "getIntezmenyiAllomanyLista", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
public class GetIntezmenyiAllomanyLista
{
[XmlElement(ElementName = "intezmenyiAllomanyListaRequest", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public IntezmenyiAllomanyListaRequest IntezmenyiAllomanyListaRequest { get; set; }
}
}

View file

@ -0,0 +1,10 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Request
{
public class IntezmenyiAllomanyListaRequest : EftRequest
{
[XmlElement(ElementName = "intezmenyiAllomanyListaRequestBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public IntezmenyiAllomanyListaRequestBusinessContent IntezmenyiAllomanyListaRequestBusinessContent { get; set; }
}
}

View file

@ -0,0 +1,10 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Request
{
public class IntezmenyiAllomanyListaRequestBusinessContent
{
[XmlElement(ElementName = "cimzettId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string CimzettId { get; set; }
}
}

View file

@ -0,0 +1,39 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Response
{
public class Allomany
{
[XmlElement(ElementName = "id", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public int Id { get; set; }
[XmlElement(ElementName = "publikusId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public Guid PublikusId { get; set; }
[XmlElement(ElementName = "allomanyTipus", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public AllomanyTipus AllomanyTipus { get; set; }
[XmlElement(ElementName = "nev", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string Nev { get; set; }
[XmlElement(ElementName = "kiterjesztes", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string Kiterjesztes { get; set; }
[XmlElement(ElementName = "bekuldoModulUser", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string BekuldoModulUser { get; set; }
[XmlElement(ElementName = "datum", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public DateTime Datum { get; set; }
[XmlElement(ElementName = "meretMb", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public int MeretMb { get; set; }
[XmlElement(ElementName = "leiras", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string Leiras { get; set; }
[XmlElement(ElementName = "tomoritett", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public bool Tomoritett { get; set; }
[XmlElement(ElementName = "binaris", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public bool Binaris { get; set; }
[XmlElement(ElementName = "statusz", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string Statusz { get; set; }
[XmlElement(ElementName = "darabszam", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public int Darabszam { get; set; }
[XmlElement(ElementName = "ervenyesseg", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public DateTime Ervenyesseg { get; set; }
[XmlElement(ElementName = "hash", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string Hash { get; set; }
}
}

View file

@ -0,0 +1,14 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Response
{
public class AllomanyTipus
{
[XmlElement(ElementName = "id", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public int Id { get; set; }
[XmlElement(ElementName = "nev", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string Nev { get; set; }
[XmlElement(ElementName = "leiras", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string Leiras { get; set; }
}
}

View file

@ -0,0 +1,13 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Response
{
[Serializable]
[XmlRoot(ElementName = "getIntezmenyiAllomanyListaResponse", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
public class GetIntezmenyiAllomanyListaResponse
{
[XmlElement(ElementName = "intezmenyiAllomanyListaResponse", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public IntezmenyiAllomanyListaResponse IntezmenyiAllomanyListaResponse { get; set; }
}
}

View file

@ -0,0 +1,10 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Response
{
public class IntezmenyiAllomanyListaResponse : EftResponse
{
[XmlElement(ElementName = "intezmenyiAllomanyListaResponseBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public IntezmenyiAllomanyListaResponseBusinessContent IntezmenyiAllomanyListaResponseBusinessContent { get; set; }
}
}

View file

@ -0,0 +1,12 @@
using System.Collections.Generic;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.IntezmenyiAllomanyLista.Response
{
public class IntezmenyiAllomanyListaResponseBusinessContent
{
[XmlArray(ElementName = "allomanyok", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
[XmlArrayItem(ElementName = "allomany", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public List<Allomany> Allomanyok { get; set; }
}
}

View file

@ -0,0 +1,24 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model
{
public class Logging
{
[XmlIgnore]
public DateTime SubmittedAt { get; set; }
[XmlElement(ElementName = "submittedAt", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string SubmittedAtStr
{
get
{
return SubmittedAt.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ");
}
set
{
SubmittedAt = DateTime.Parse(value);
}
}
}
}

View file

@ -0,0 +1,14 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model
{
public class RepresentedUser
{
[XmlElement(ElementName = "userId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string UserId { get; set; }
[XmlElement(ElementName = "userName", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string UserName { get; set; }
[XmlElement(ElementName = "clientUserId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string ClientUserId { get; set; }
}
}

View file

@ -0,0 +1,11 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.SikeresCimzettAllomanyLetoltes.Request
{
public class SikeresAllomanyLetoltesRequest : EftRequest
{
[XmlElement(ElementName = "sikeresAllomanyLetoltesRequestBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public SikeresAllomanyLetoltesRequestBusinessContent SikeresAllomanyLetoltesRequestBusinessContent { get; set; }
}
}

View file

@ -0,0 +1,14 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.SikeresCimzettAllomanyLetoltes.Request
{
public class SikeresAllomanyLetoltesRequestBusinessContent
{
[XmlElement(ElementName = "allomanyPublikusId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public Guid AllomanyPublikusId { get; set; }
[XmlElement(ElementName = "cimzettId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string CimzettId { get; set; }
}
}

View file

@ -0,0 +1,13 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.SikeresCimzettAllomanyLetoltes.Request
{
[Serializable]
[XmlRoot(ElementName = "sikeresCimzettAllomanyLetoltes", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
public class SikeresCimzettAllomanyLetoltes
{
[XmlElement(ElementName = "sikeresAllomanyLetoltesRequest", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public SikeresAllomanyLetoltesRequest SikeresAllomanyLetoltesRequest { get; set; }
}
}

View file

@ -0,0 +1,10 @@
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.SikeresCimzettAllomanyLetoltes.Response
{
public class SikeresAllomanyLetoltesResponse : EftResponse
{
[XmlElement(ElementName = "sikeresAllomanyLetoltesResponseBusinessContent", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string SikeresAllomanyLetoltesResponseBusinessContent { get; set; } = null;
}
}

View file

@ -0,0 +1,13 @@
using System;
using System.Xml.Serialization;
namespace Kreta.EESZTInterface.eFT.Model.SikeresCimzettAllomanyLetoltes.Response
{
[Serializable]
[XmlRoot(ElementName = "sikeresCimzettAllomanyLetoltesResponse", Namespace = Namespaces.allomanyPublikaloServiceV1Ns)]
public class SikeresCimzettAllomanyLetoltesResponse
{
[XmlElement(ElementName = "sikeresAllomanyLetoltesResponse", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public SikeresAllomanyLetoltesResponse SikeresAllomanyLetoltesResponse { get; set; }
}
}