Пример #1
0
        public ActionResult DeleteComment(string commentId, string siteId)
        {
            var model = new CommentsModel();

            model.DeleteComment(int.Parse(commentId));
            model.FindComments(int.Parse(siteId));
            return(View("CommentsPanel", model));
        }