Esempio n. 1
0
 public JsonResult CheckStatusIsActive(string tableName, string Id)
 {
     bool isAvtive = false;
     if ((!string.IsNullOrEmpty(Id)) && (!string.IsNullOrEmpty(tableName)))
     {
         BCBSClient client = new BCBSClient();
         isAvtive = client.CheckStausIsActive(Convert.ToInt64(Id), tableName);
     }
     return Json(isAvtive, JsonRequestBehavior.AllowGet);
 }