Example #1
0
 public IActionResult GetLoanwisecharges(string Loanname, decimal Amount, decimal tenor, string applicanttype, string Loanpayin, string tranddate, Int32 schemeid)
 {
     lstLoanwisecharges = new List <LoanwisechargeDTO>();
     try
     {
         lstLoanwisecharges = ObjApproval.GetLoanwisecharges(Loanname, Amount, tenor, applicanttype, Loanpayin, Con, tranddate, schemeid);
     }
     catch (Exception ex)
     {
         throw new FinstaAppException(ex.ToString());
     }
     return(Ok(lstLoanwisecharges));
 }