init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
30
Kreta.BusinessLogic/KotvallVisszavonasCo.cs
Normal file
30
Kreta.BusinessLogic/KotvallVisszavonasCo.cs
Normal file
|
@ -0,0 +1,30 @@
|
|||
using System;
|
||||
using Kreta.Client.KGR.Request;
|
||||
|
||||
namespace Kreta.BusinessLogic
|
||||
{
|
||||
public class KotvallVisszavonasCo
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public Guid IdpEgyediAzonosito { get; set; }
|
||||
public string OktatasiAzonosito { get; set; }
|
||||
public Guid? IntezmenyEgyediAzonosito { get; set; }
|
||||
public string EloTag { get; set; }
|
||||
public string CsaladiNev { get; set; }
|
||||
public string Utonev { get; set; }
|
||||
|
||||
public IntezmenyiBeszerzesVisszavonasRequest ConvertToRequest()
|
||||
{
|
||||
return new IntezmenyiBeszerzesVisszavonasRequest
|
||||
{
|
||||
Id = Id,
|
||||
CsaladiNev = CsaladiNev,
|
||||
EloTag = EloTag,
|
||||
IdpEgyediAzonosito = IdpEgyediAzonosito.ToString(),
|
||||
IntezmenyEgyediAzonosito = IntezmenyEgyediAzonosito?.ToString() ?? "-",
|
||||
OktatasiAzonosito = OktatasiAzonosito,
|
||||
Utonev = Utonev,
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue