public BankAccount(decimal balance) { this.balance = balance; this.history = new TransactionHistory(); }
//Constructeur public BankAccount() { this.history = new TransactionHistory(); }