Exemplo n.º 1
0
 public Mortgage(Customer customer, decimal balance, int interest)
     : base(customer, balance, interest)
 {
 }
Exemplo n.º 2
0
 public Loan(Customer customer, decimal balance, int interest)
     : base(customer, balance, interest)
 {
 }
Exemplo n.º 3
0
 public Account(Customer customer, decimal balance, int interest)
 {
     this.BankCustomer = customer;
     this.Balance = balance;
     this.Interest = interest;
 }