protected Task <PostAuthenticationResponse> Authenticate(string username, string password) =>
 ClientHandler.Authenticate(username, password);
 public static Task <PostAuthenticationResponse> Authenticate(this IClientHandler clientHandler, string username,
                                                              string password) => clientHandler.Authenticate(new PostAuthenticationRequest(username, password)
 {
     CurrentDatabase = null
 });