public async Task <bool> AddComment(CommentDataTransfer commentData) { return(await _articleRepository.AddCommentToArticle(commentData.ArticleId, commentData.Nickname, commentData.Content)); }