public Deposite(Customer customer, decimal balance, decimal interest) : base(customer, balance, interest) { }
public Deposit(Customer customer, decimal balance, decimal interestRate) : base(customer, balance, interestRate) { }
public Loan(Customer customer, decimal balance, decimal interestRate) : base(customer, balance, interestRate) { }
public Mortgage(Customer customer, double balance, double interestRate) : base(customer, balance, interestRate) { }
//Constructor public Account(Customer customer, decimal balance, decimal interestRate) { this.Customer = customer; this.Balance = balance; this.InterestRate = interestRate; }
public Deposit(Customer customer, double balance, double interestRate) : base(customer, balance, interestRate) { }
//Constructor public MortageAccount(Customer customer, decimal balance, decimal interestRate) : base(customer, balance, interestRate) { }
public Loan(Customer customer, double balance, double interestRate) : base(customer, balance, interestRate) { }
public Mortgage(Customer customer, decimal balance, decimal interestRate) : base(customer, balance, interestRate) { }
public Acount(Customer customer, double balance, double interestRate) { this.Customer = customer; this.Balance = balance; this.InterestRate = interestRate; }