public JsonResult UpdateCostsheetVersion(string QRFID, string QRFPriceId) { CostsheetVerSetRes response = new CostsheetVerSetRes(); CostsheetVerSetReq request = new CostsheetVerSetReq(); request.QRFID = QRFID; request.QRFPriceId = QRFPriceId; request.Create_User = ckUserEmailId; response = coProviders.UpdateCostsheetVersion(request, token).Result; if (response != null) { return(Json(response.ResponseStatus)); } return(Json("failure")); }