public IActionResult ArticleDetail(int Id)
        {
            Article        article  = articleRepository.getArticleById(Id);
            List <Comment> comments = commentRepository.getCommentsByArticleId(Id).ToList();

            articleRepository.AddViewById(Id);
            ViewBag.Article  = article;
            ViewBag.Comments = comments;
            return(View());
        }