public LoanEMI GetLoanSettlement(decimal rateOfInterest, decimal tenureInMonths, decimal loanAmount, int installmentsPaid)
 {
     return(LoanEMIIntegration.GetLoanSettlement(rateOfInterest, tenureInMonths, loanAmount, installmentsPaid));
 }
 public LoanEMI GetLoanEMIByEMINumber(decimal rateOfInterest, decimal tenureInMonths, decimal loanAmount, int emiNumber)
 {
     return(LoanEMIIntegration.GetLoanEMIByEMINumber(rateOfInterest, tenureInMonths, loanAmount, emiNumber));
 }
 public LoanEMI GetLoanEMIByEMINumber(List <LoanEMI> theLoanEMIChart, int emiNumber)
 {
     return(LoanEMIIntegration.GetLoanEMIByEMINumber(theLoanEMIChart, emiNumber));
 }
 public List <LoanEMI> GetLoanEMIChart(decimal rateOfInterest, decimal tenureInMonths, decimal loanAmount)
 {
     return(LoanEMIIntegration.GetLoanEMIChart(rateOfInterest, tenureInMonths, loanAmount));
 }