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