public OneTimeCodeService(
     IOneTimeCodeStore oneTimeCodeStore,
     IPasswordHashService passwordHashService,
     IMessageService messageService
     )
 {
     _oneTimeCodeStore    = oneTimeCodeStore;
     _passwordHashService = passwordHashService;
     _messageService      = messageService;
 }
 public OneTimeCodeService(
     IApplicationLocalizer localizer,
     ILogger <OneTimeCodeService> logger,
     IOneTimeCodeStore oneTimeCodeStore,
     PasswordlessLoginOptions passwordlessLoginOptions
     )
 {
     _localizer        = localizer;
     _logger           = logger;
     _oneTimeCodeStore = oneTimeCodeStore;
     _options          = passwordlessLoginOptions;
 }