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