Example #1
0
 public BankAccount(decimal balance)
 {
     this.balance = balance;
     this.history = new TransactionHistory();
 }
Example #2
0
 //Constructeur
 public BankAccount()
 {
     this.history = new TransactionHistory();
 }