public ActionResult AddComment(int id, string comment)
        {
            db.AddComment(id, comment);

            return(RedirectToAction("Index"));
        }