public ValidateEnabledClientController(IClientStore clientStore, IUserHandler userHandler, IPasswordResetHandler passwordResetHandler) : base(clientStore, userHandler, passwordResetHandler)
 {
 }
 public MigrationController(IClientStore clientStore, IUserHandler userHandler, IPasswordResetHandler passwordResetHandler) : base(clientStore, userHandler, passwordResetHandler)
 {
 }
 public BaseController(IClientStore clientStore, IUserHandler userHandler, IPasswordResetHandler passwordResetHandler)
 {
     UserHandler          = userHandler;
     PasswordResetHandler = passwordResetHandler;
     ClientStore          = clientStore;
 }