public async Task <IActionResult> AddComment(CommentAddDto model)
 {
     if (ModelState.IsValid)
     {
         await _commentService.AddAsync(model.Adapt <Comment>());
     }
     return(RedirectToAction("Detail", "Home", new { id = model.ArticleId }));
 }