Ejemplo n.º 1
0
 public JsonResult GetAcknowledgementList()
 {
     try
     {
         BCBSClient client = new BCBSClient();
         string result = client.GetAcknowledgementList();
         List<AcknowledgementListModel> CustomerList = JsonConvert.DeserializeObject<List<AcknowledgementListModel>>(result);
         return Json(CustomerList, JsonRequestBehavior.AllowGet);
     }
     catch (Exception ex)
     {
         return Json(ex.Message, JsonRequestBehavior.AllowGet);
     }
 }