Пример #1
0
 public MortgageAccount(Customer customer, double balance, double interestRate)
     : base(customer, balance, interestRate)
 {
 }
Пример #2
0
 public DepositAccount(Customer customer, double balance, double interestRate)
     : base(customer, balance, interestRate)
 {
 }
Пример #3
0
 public Account(Customer customer, double balance, double interestRate)
 {
     this.customer = customer;
     this.balance = balance;
     this.interestRate = interestRate;
 }