Esempio n. 1
0
 public async Task <Result> DeleteCommentAsync(DeleteCommentDto comment, string userId)
 {
     return(await _deleteCommentCommandHandler.HandleAsync(new DeleteCommentCommand()
     {
         CommentId = comment.CommentId,
         TopLevel = comment.TopLevel,
         PostUrl = comment.PostUrl
     }));
 }