public Mortgage(Customer customer, decimal balance, int interest) : base(customer, balance, interest) { }
public Loan(Customer customer, decimal balance, int interest) : base(customer, balance, interest) { }
public Account(Customer customer, decimal balance, int interest) { this.BankCustomer = customer; this.Balance = balance; this.Interest = interest; }