Example #1
0
        public JsonResult GetCity()
        {
            var getcityModel = _clPatientStatisticsDB.GetCity();
            //getspecialityModel.Add(new GenericListModel { id = 0, name = "ALL", text = "ALL" });

            var json = getcityModel.DefaultIfEmpty();

            return(Json(json, JsonRequestBehavior.AllowGet));
        }