Ejemplo n.º 1
0
 public LoanAcount(Customer customer, decimal balance, decimal intrest)
     : base(customer, balance, intrest)
 {
 }
Ejemplo n.º 2
0
 public Acount(Customer customer, decimal balance,decimal intrest)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.Intrest = intrest;
 }
Ejemplo n.º 3
0
 public DepositAcount(Customer customer, decimal balance, decimal intrest)
     : base(customer, balance, intrest)
 {
 }