public MortgageAccount(Customer customer, decimal moneyTransaction, decimal interestRate)
     : base(customer, moneyTransaction, interestRate)
 {
 }
 public DepositAccount(Customer customer, decimal moneyTransaction, decimal interestRate)
     : base(customer, moneyTransaction, interestRate)
 {
 }
Esempio n. 3
0
 public LoanAccount(Customer customer, decimal balance)
     : base(customer, balance)
 {
 }
Esempio n. 4
0
 protected Account(Customer customer, decimal balance)
 {
     this.Customer = customer;
     this.Balance = balance;
 }
Esempio n. 5
0
 public Loan(Customer customer, decimal ballance, decimal interest)
     : base(customer, ballance, interest)
 {
     this.Type = AccountType.Loan;
 }
Esempio n. 6
0
 public MortgageAccount(Customer customer, decimal balance)
     : base(customer, balance)
 {
 }
Esempio n. 7
0
        private decimal noInterestAmount = 1000m; // must be positive

        #endregion Fields

        #region Constructors

        public Deposit(Customer customer, decimal ballance, decimal interest)
            : base(customer, ballance, interest)
        {
            this.Type = AccountType.Deposit;
        }
Esempio n. 8
0
 public Account(Customer customer, decimal ballance, decimal interest)
 {
     this.Customer = customer;
     this.Ballance = ballance;
     this.InterestRate = interest;
 }
Esempio n. 9
0
 public DepositAccount(Customer customer, decimal balance)
     : base(customer, balance)
 {
 }