public Account(Customer customer, decimal interestRate) { this.Customer = customer; this.InterestRate = interestRate; this.Balance = 0.0M; }
public Deposit(Customer customer, decimal interestRate) : base(customer, interestRate) { }
public Loan(Customer customer, decimal interestRate) : base(customer, interestRate) { }
public Mortgage(Customer customer, decimal interestRate) : base(customer, interestRate) { }