public void Reply(Post post, Comment comment) =>
 _vMindbooke.CreateReply(_credentials, post.Id, comment.Id,
                         new NewComment(Keki.GetCleverReply(comment.Content)));
 public void Repost(Post post) =>
 _vMindbooke.CreatePost(_credentials, _credentials.Id,
                        new NewPost(Keki.GetCleverTitle(post.Title), post.Content));
 public void Comment(Post post) =>
 _vMindbooke.CreateComment(_credentials, post.Id,
                           new NewComment(Keki.GetCleverComment(post.Content)));