public Account(decimal balance, decimal interest, Customer customer) { this.Balance = balance; this.InterestRate = interest; this.customer = customer; this.creationDate = DateTime.Now; }
public MortgageAccount(Customer customer, decimal balance, decimal interestRate) : base(customer, balance, interestRate) { }
public Account(Customer customer, decimal balance, decimal interestRate) { this.Customer = customer; this.Balance = balance; this.InterestRate = interestRate; }
public DepositAccount(Customer customer, decimal balance, decimal interestRate) : base(customer, balance, interestRate) { }
public MortgageAccount(decimal balance, decimal interest, Customer customer) : base(balance, interest, customer) { }
public DepositAccount(decimal balance, decimal interestRate, Customer customer) : base(balance, interestRate, customer) { }