Example #1
0
 public LoanAcount(Custumer custumer, decimal balance, decimal interestRate)
     : base(custumer, balance, interestRate)
 {
     //
 }
Example #2
0
 public Account(Custumer custumer, decimal balance, decimal interestRate)
 {
     this.Custumer = custumer;
     this.Balance = balance;
     this.InterestRate = interestRate;
 }