コード例 #1
0
ファイル: Customer.cs プロジェクト: JnChauhan/BankingProj0
 public Customer()
 {
     Id       = UtilityIncrement.CustNextVal();
     Checking = new List <CheckingAcc>();
     Business = new List <BusinessAcc>();
     TDC      = new List <TermDepositAccount>();
 }
コード例 #2
0
ファイル: BusinessAcc.cs プロジェクト: JnChauhan/BankingProj0
 public void CreateAccount()
 {
     IsActive   = true;
     AccountNum = UtilityIncrement.AccountNextVal();
 }
コード例 #3
0
 public void CreateAccount()
 {
     IsActive   = true;
     AccountNum = UtilityIncrement.AccountNextVal();
     OpenDate   = DateTime.Now;
 }