Esempio n. 1
0
 public List <CustomerLoan> GetCustomerLoanListByCustomerID(int customerID)
 {
     return(CustomerLoanIntegration.GetCustomerLoanListByCustomerID(customerID));
 }
Esempio n. 2
0
 public int UpdateCustomerLoan(CustomerLoan theCustomerLoan)
 {
     return(CustomerLoanIntegration.UpdateCustomerLoan(theCustomerLoan));
 }
Esempio n. 3
0
 public int DeleteCustomerLoan(CustomerLoan theCustomerLoan)
 {
     return(CustomerLoanIntegration.DeleteCustomerLoan(theCustomerLoan));
 }
Esempio n. 4
0
 public decimal GetInterestAmount(int customerLoanID, DateTime recoveryDate)
 {
     return(CustomerLoanIntegration.GetInterestAmount(customerLoanID, recoveryDate));
 }
Esempio n. 5
0
 public int InsertCustomerLoan(CustomerLoan theCustomerLoan)
 {
     return(CustomerLoanIntegration.InsertCustomerLoan(theCustomerLoan));
 }
Esempio n. 6
0
 public decimal GetMaxLoanCanAvailByCustomerAccountID(int customerAccountID)
 {
     return(CustomerLoanIntegration.GetMaxLoanCanAvailByCustomerAccountID(customerAccountID));
 }
Esempio n. 7
0
 public List <CustomerLoan> GetCustomerLoanListByOfficeIDs(string officeIds, bool allOffices)
 {
     return(CustomerLoanIntegration.GetCustomerLoanListByOfficeIDs(officeIds, allOffices));
 }
Esempio n. 8
0
 public CustomerLoan GetActiveCustomerLoanByCustomerAccountID(int customerAccountID)
 {
     return(CustomerLoanIntegration.GetActiveCustomerLoanByCustomerAccountID(customerAccountID));
 }
Esempio n. 9
0
 public CustomerLoan GetCustomerLoanByCustomerLoanID(int customerLoanID)
 {
     return(CustomerLoanIntegration.GetCustomerLoanByCustomerLoanID(customerLoanID));
 }
Esempio n. 10
0
 public List <CustomerLoan> GetCustomerActiveLoanList(bool allOffices = false, bool showDeleted = false)
 {
     return(CustomerLoanIntegration.GetCustomerActiveLoanList(allOffices, showDeleted));
 }