public AuthenticateController(
     IPasswordAuthService passwordAuthService,
     IDataProtectionProvider dataProtectionProvider,
     IAmrHelper amrHelper,
     IOAuthClientQueryRepository oauthClientRepository,
     IOAuthUserCommandRepository oauthUserCommandRepository) : base(dataProtectionProvider, oauthClientRepository, oauthUserCommandRepository, amrHelper)
 {
     _passwordAuthService = passwordAuthService;
 }
 public AuthenticateController(
     IOptions <OpenIDHostOptions> options,
     IPasswordAuthService passwordAuthService,
     ITranslationHelper translationHelper,
     IDataProtectionProvider dataProtectionProvider,
     IAmrHelper amrHelper,
     IOAuthClientRepository oauthClientRepository,
     IOAuthUserRepository oauthUserCommandRepository) : base(options, dataProtectionProvider, oauthClientRepository, amrHelper, oauthUserCommandRepository)
 {
     _passwordAuthService = passwordAuthService;
     _translationHelper   = translationHelper;
 }