Exemplo n.º 1
0
 public Account(Customers currentCustomer, decimal currentBalance, decimal currentInterestRate)
 {
     this.Customer = currentCustomer;
     this.Balance = currentBalance;
     this.InterestRate = currentInterestRate;
     this.Interest = currentInterestRate;
 }
Exemplo n.º 2
0
 public Accounts(Customers customer, decimal balance, decimal interestRate, int numberAccount)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.InterestRate = interestRate;
     this.NumberAccount = numberAccount;
 }
Exemplo n.º 3
0
 public Loan(Customers currentCustomer, decimal currentBalance, decimal currentInterestRate)
     : base(currentCustomer, currentBalance, currentInterestRate)
 {
 }
Exemplo n.º 4
0
 public LoanAccounts(Customers customer, decimal balance, decimal interestRate, int numberAccount)
     : base(customer, balance, interestRate, numberAccount)
 {
 }
Exemplo n.º 5
0
 public Deposite(Customers currentCustomer, decimal currentBalance, decimal currentInterestRate)
     : base(currentCustomer, currentBalance, currentInterestRate)
 {
 }
Exemplo n.º 6
0
 public LoanAccount(Customers customeR, decimal balancE, double interestRatE)
     : base(customeR, balancE, interestRatE)
 {
 }
Exemplo n.º 7
0
 public MortgageAccounts(Customers customer, decimal balance, decimal interestRate, int numberAccount)
     : base(customer, balance, interestRate, numberAccount)
 {
 }