public int DeleteGuarantorLoan(GuarantorLoan theGuarantorLoan)
 {
     return(GuarantorLoanIntegration.DeleteGuarantorLoan(theGuarantorLoan));
 }
 public int InsertGuarantorLoan(GuarantorLoan theGuarantorLoan)
 {
     return(GuarantorLoanIntegration.InsertGuarantorLoan(theGuarantorLoan));
 }
 public int UpdateGuarantorLoan(GuarantorLoan theGuarantorLoan)
 {
     return(GuarantorLoanIntegration.UpdateGuarantorLoan(theGuarantorLoan));
 }
 public List <GuarantorLoan> GetGuarantorLoansByLoanAppliedBy(string loanAppliedBy, bool allOffices, string officeIds)
 {
     return(GuarantorLoanIntegration.GetGuarantorLoansByLoanAppliedBy(loanAppliedBy, allOffices, officeIds));
 }
 public GuarantorLoan GetGuarantorLoanDetails(int GuarantorLoanID)
 {
     return(GuarantorLoanIntegration.GetGuarantorLoanDetails(GuarantorLoanID));
 }
 public GuarantorLoan GetEMIChartDetails(int LoanApplicantID)
 {
     return(GuarantorLoanIntegration.GetEMIChartDetails(LoanApplicantID));
 }
 public List <GuarantorLoan> EMITable(double RateOfInterest, double Tenure, double PrincipalAmount, double Emiamount)
 {
     return(GuarantorLoanIntegration.EMITable(RateOfInterest, Tenure, PrincipalAmount, Emiamount));
 }
 public GuarantorLoan GetPreviousLoanDetails(int LoanApplicantID, string RecordValue)
 {
     return(GuarantorLoanIntegration.GetPreviousLoanDetails(LoanApplicantID, RecordValue));
 }
 public List <GuarantorLoan> GetGuarantorLoansByOfficeID(bool allOffices, string officeIds)
 {
     return(GuarantorLoanIntegration.GetGuarantorLoansByOfficeID(allOffices, officeIds));
 }
        //public List<GuarantorLoan> GetGuarantorLoans(string loanAppliedBy, string officeIds)
        //{
        //    return GuarantorLoanIntegration.GetGuarantorLoans(loanAppliedBy, officeIds);
        //}

        public List <GuarantorLoan> GetAllPreviousLoanDetailByID(int LoanApplicantID, string LoanAppliedBy)
        {
            return(GuarantorLoanIntegration.GetAllPreviousLoanDetailByID(LoanApplicantID, LoanAppliedBy));
        }
 public List <GuarantorLoan> GetGuarantorLoanList(bool allOffices = true, bool showDeleted = false, bool showClosed = false)
 {
     return(GuarantorLoanIntegration.GetGuarantorLoanList(allOffices, showDeleted, showClosed));
 }
 public GuarantorLoan GetGuarantorLoansById(int GuarantorLoanID)
 {
     return(GuarantorLoanIntegration.GetGuarantorLoansById(GuarantorLoanID));
 }