示例#1
0
        public JsonResult ChangeStatus(int id)
        {
            var result = ProductBus.ChangeStatus(id);

            return(Json(new
            {
                status = result
            }));
        }