public LoanAcount(Customer customer, decimal balance, decimal intrest)
     : base(customer, balance, intrest)
 {
 }
Example #2
0
 public Acount(Customer customer, decimal balance,decimal intrest)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.Intrest = intrest;
 }
 public DepositAcount(Customer customer, decimal balance, decimal intrest)
     : base(customer, balance, intrest)
 {
 }