Ejemplo n.º 1
0
        public JsonResult Delete(int id)
        {
            //获得Model
            var model = mvcControllerService.GetControllerSingleById(id);

            mvcControllerService.Delete(model, null);

            var data = this.GetControllerDtoList();

            //返回给Json
            return(Json(data, JsonRequestBehavior.AllowGet));
        }