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