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