コード例 #1
0
ファイル: BankAccount.cs プロジェクト: AmineHbr/BankAPI
 public BankAccount(decimal balance)
 {
     this.balance = balance;
     this.history = new TransactionHistory();
 }
コード例 #2
0
ファイル: BankAccount.cs プロジェクト: AmineHbr/BankAPI
 //Constructeur
 public BankAccount()
 {
     this.history = new TransactionHistory();
 }