public BankAccount(EAcountType accountType, Guid bankId, string agency)
 {
     AccountType = accountType;
     BankId      = bankId;
     Agency      = agency;
 }
Example #2
0
 public static string GetAcountType(EAcountType typeKey)
 {
     return(types[typeKey]);
 }