예제 #1
0
        public JsonResult GetServiceType()
        {
            var getservicetypeModel = _clPatientStatisticsDB.GetServiceType();
            //nationalityModel.Add(new GenericListModel { id = 0, name = "ALL", text = "ALL" });
            var json = getservicetypeModel.DefaultIfEmpty();

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