Example #1
0
        public ActionResult DeleteConfirmed(int id)
        {
            var comment = _commentApp.GetById(id);

            _commentApp.Remove(comment);

            return(RedirectToAction("Index"));
        }