コード例 #1
0
 public BankAccount(EAcountType accountType, Guid bankId, string agency)
 {
     AccountType = accountType;
     BankId      = bankId;
     Agency      = agency;
 }
コード例 #2
0
ファイル: AcountTypesCore.cs プロジェクト: afarion/SmartFood
 public static string GetAcountType(EAcountType typeKey)
 {
     return(types[typeKey]);
 }