public void DeleteComment(PostComment comment)
 {
     client.DeleteComment(comment.ToDto());
 }
 public void AddComment(PostComment comment)
 {
     client.AddComment(comment.ToDto());
 }