public MortgageAccount(Customer customer, decimal interestRate)
     : base(customer, interestRate)
 {
 }
 public LoanAccount(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
 public DepositAccount(Customer customer, decimal interestRate)
     : base(customer, interestRate)
 {
 }
 public Account(Customer customer, decimal balance, decimal interestRate)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.InterestRate = interestRate;
 }
Exemple #5
0
 public Account(Customer customer, decimal interestRate)
 {
     this.Customer = customer;
     this.InterestRate = interestRate;
 }