Exemple #1
0
 public async Task ReplyActionAsync(string artcileId, CommentModel comment)
 {
     if (artcileId == null || comment == null)
     {
         throw new ArgumentNullException();
     }
     await _commentDao.AddCommentAsync(artcileId, comment);
 }