Example #1
0
 public IActionResult GetExstingloandetails(string Applicationid)
 {
     lstCashflow = new List <CashflowDTO>();
     try
     {
         lstCashflow = ObjApproval.GetExstingloandetails(Applicationid, Con);
     }
     catch (Exception ex)
     {
         throw new FinstaAppException(ex.ToString());
     }
     return(Ok(lstCashflow));
 }