Exemplo n.º 1
0
 public IActionResult GetCostsheetVersions(string QRFID)
 {
     try
     {
         CostsheetVersionGetRes response = new CostsheetVersionGetRes();
         CostsheetGetReq        request  = new CostsheetGetReq();
         request.QRFID = QRFID;
         response      = coProviders.GetCostsheetVersions(request, token).Result;
         return(PartialView("_CostsheetVersion", response.CostsheetVersions));
     }
     catch (Exception ex)
     {
         throw;
         return(View());
     }
 }