public ActionResult Add(Comment comment)
 {
     if (ModelState.IsValid)
     {
         _commentsLogic.AddComment(comment);
         return(RedirectToAction("Single", "Post", new { Id = comment.PostId }));
     }
     return(View(comment));
 }