Esempio n. 1
0
 public JsonResult GetAcknowledgementProjectServiceList(string projectId, string serviceIds, string ackId)
 {
     BCBSClient client = new BCBSClient();
     string dataResult = client.GetAcknowledgementProjectServiceList(Convert.ToInt64(projectId), serviceIds, ackId);
     List<ProjectServiceListModel> projectServiceList = new List<ProjectServiceListModel>();
     projectServiceList = JsonConvert.DeserializeObject<List<ProjectServiceListModel>>(dataResult);
     return Json(projectServiceList, JsonRequestBehavior.AllowGet);
 }