public void DeleteComment(CommentDto comment) { client.Delete(new DeleteCommentRequest { CommentId = comment.Id }); }
public void AddComment(CommentDto comment) { client.Post(new AddCommentRequest { Text = comment.Text, PostId = comment.Post.Id }); }