public DepositAccount(Customer customer, double balance, double interestRate) : base(customer, balance, interestRate) { }
public LoanAccounts(Customer customer, double balance, double interestRate) : base(customer, balance, interestRate) { }
protected Account(Customer customer, decimal balance, decimal monthInterest) { this.Customer = customer; this.Balance = balance; this.MonthInterest = monthInterest; }
public Account(Customer customer, double balance, double interestRate) { this.Customer = customer; this.Balance = balance; this.InterestRate = interestRate; }
public Mortgage(Customer customer, decimal balance, decimal monthInterest) : base(customer, balance, monthInterest) { }
public MortgageAccount(Customer customer, double balance, double interestRate) : base(customer, balance, interestRate) { }