Ejemplo n.º 1
0
        public ActionResult Delete(int id)
        {
            var b = CommentBll.DeleteEntitiesSaved(CommentBll.GetSelfAndAllChildrenCommentsByParentId(id).ToList());

            return(ResultData(null, b, b ? "删除成功!" : "删除失败!"));
        }