public AuthenticateController(
     IDataProtectionProvider dataProtectionProvider,
     IOAuthClientQueryRepository oauthClientRepository,
     IOAuthUserCommandRepository oauthUserCommandRepository,
     IAmrHelper amrHelper,
     ISmsAuthService smsAuthService) : base(dataProtectionProvider, oauthClientRepository, oauthUserCommandRepository, amrHelper)
 {
     _smsAuthService = smsAuthService;
 }
Пример #2
0
 public AuthenticateController(
     IOptions <OpenIDHostOptions> options,
     IDataProtectionProvider dataProtectionProvider,
     ITranslationHelper translateHelper,
     IOAuthClientRepository oauthClientRepository,
     IAmrHelper amrHelper,
     ISmsAuthService smsAuthService,
     IOAuthUserRepository oauthUserCommandRepository) : base(options, dataProtectionProvider, oauthClientRepository, amrHelper, oauthUserCommandRepository)
 {
     _smsAuthService    = smsAuthService;
     _translationHelper = translateHelper;
 }