Ejemplo n.º 1
0
 public Account(string name, double balance, double interestRate, Customer holder, DateTime startDate)
 {
     this.Name = name;
     this.Balance = balance;
     this.InterestRate = interestRate;
     this.Holder = holder;
     this.StartDate = startDate;
 }
Ejemplo n.º 2
0
 protected Account(decimal initialBalance, decimal initialInterestRate, Customer initialCustomer)
     : this(initialBalance, initialInterestRate)
 {
     this.Customer = initialCustomer;
 }
Ejemplo n.º 3
0
 public Loan(string name, double balance, double interestRate, Customer holder, DateTime startDate)
     : base(name, balance, interestRate, holder, startDate)
 {
 }
Ejemplo n.º 4
0
 public LoanAccount(decimal balance, decimal interestRate, Customer customer)
     : base(balance, interestRate, customer)
 {
 }