Example #1
0
 public Deposit(string nameCustomer, CustumerType typeCustomer, decimal balcanceAccount, double interestrateAcc)
 {
     this.Pbalance      = balcanceAccount;
     this.Pcustomer     = typeCustomer;
     this.PcustomerName = nameCustomer;
     this.PinterestRate = interestrateAcc;
 }
Example #2
0
 public Deposit(string nameCustomer, CustumerType typeCustomer, decimal balcanceAccount, double interestrateAcc)
 {
     this.Pbalance = balcanceAccount;
     this.Pcustomer = typeCustomer;
     this.PcustomerName = nameCustomer;
     this.PinterestRate = interestrateAcc;
 }
Example #3
0
 public Mortgage(string namecustomer, CustumerType typeCustomer, decimal balanceAcc, double intertestRateAcc)
 {
     this.Pbalance      = balanceAcc;
     this.Pcustomer     = typeCustomer;
     this.PcustomerName = namecustomer;
     this.PinterestRate = intertestRateAcc;
 }
Example #4
0
 public Mortgage(string namecustomer, CustumerType typeCustomer, decimal balanceAcc, double intertestRateAcc)
 {
     this.Pbalance = balanceAcc;
     this.Pcustomer = typeCustomer;
     this.PcustomerName = namecustomer;
     this.PinterestRate = intertestRateAcc;
 }
Example #5
0
 public Customer(string firstName, string middleName,
     string lastName, string email, string mobilePhone, string permanentAddress, int id
     , List<Payment> payment, CustumerType costumerType)
 {
     this.FirstName = firstName;
     this.Payments = payment;
     this.MiddleName = middleName;
     this.LastName = lastName;
     this.Email = email;
     this.MobilePhone = mobilePhone;
     this.PermanentAddress = permanentAddress;
     this.Id = id;
     this.CustomerType = costumerType;
 }
Example #6
0
 public Account(CustumerType custumer, decimal balance, double interestRate)
 {
     this.Custumer = custumer;
     this.Balance = balance;
     this.InterestRate = interestRate;
 }
Example #7
0
 public LoanAccount(CustumerType custumer, decimal balance, double interestRate)
     : base(custumer, balance, interestRate)
 {
 }
 public DepositAccount(CustumerType custumer, decimal balance, double interestRate)
     : base(custumer, balance, interestRate)
 {
 }
Example #9
0
 //Constructors
 public Custumer(CustumerType custumerType, string custumerName)
 {
     this.CustumerName = custumerName;
     this.Type         = custumerType;
 }
Example #10
0
 public Account(CustumerType custumer, decimal balance, double interestRate)
 {
     this.Custumer     = custumer;
     this.Balance      = balance;
     this.InterestRate = interestRate;
 }