예제 #1
0
 public JsonResult GetAccuralListbyMonthYear(string month, string year)
 {
     BCBSClient client = new BCBSClient();
     string result = client.GetAccuralReportByMonthYear(month, year);
     List<AccuralReportModel> AccuralList = JsonConvert.DeserializeObject<List<AccuralReportModel>>(result);
     return Json(AccuralList, JsonRequestBehavior.AllowGet);
 }