Ejemplo n.º 1
0
 public JsonResult DeleteContractById(string id)
 {
     bool isdeleted = false;
     if (!string.IsNullOrEmpty(id))
     {
         BCBSClient client = new BCBSClient();
         isdeleted = client.DeleteContractById(id);
     }
     return Json(isdeleted, JsonRequestBehavior.AllowGet);
 }