public ActionResult AllComments()
        {
            List <CommentDTO> commentList = new List <CommentDTO>();

            commentList = bll.GetAllComments();
            return(View(commentList));
        }