protected CustomerAcount(Customer customer, decimal balance, decimal interestRate)
 {
     this.currentCustomer = customer;
     this.balance = balance;
     this.interestRate = interestRate;
     accountCreationDate = DateTime.Now;
 }
Esempio n. 2
0
 public Deposit(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
Esempio n. 3
0
 public Mortgage(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
Esempio n. 4
0
 public Loan(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }