init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,30 @@
|
|||
using Kreta.Enums;
|
||||
|
||||
namespace Kreta.DataAccessManual.ParameterClasses
|
||||
{
|
||||
public class BankszamlaIgenylesPco
|
||||
{
|
||||
public string EgyediAzonosito { get; set; }
|
||||
|
||||
public string BankszamlaSzam { get; set; }
|
||||
|
||||
public bool IsError { get; set; }
|
||||
|
||||
public string ErrorText { get; set; }
|
||||
|
||||
public string IntezmenyAzonosito { get; set; }
|
||||
|
||||
public int BankszamlaTulajdonosTipusId => (int)BankszamlaTulajdonosTipusEnum.sajat;
|
||||
|
||||
public string BankszamlaTulajdonosNeve { get; set; }
|
||||
|
||||
public string NyitasNapja { get; set; }
|
||||
|
||||
public int Sorszam { get; set; }
|
||||
|
||||
public bool IsTanuloNemtalalhatoEgyediAzonositoAlapjan =>
|
||||
!IsError &&
|
||||
string.IsNullOrWhiteSpace(ErrorText) &&
|
||||
string.IsNullOrWhiteSpace(IntezmenyAzonosito);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue