init
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
}
|
@@ -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; }
|
||||
}
|
||||
|
||||
}
|
@@ -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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user