Exemple #1
0
 public Handler(IMsisLookupService msisLookupService, ILogger <VerifyIdentifiedUser> logger, IVerificationLimit verificationLimit, IVerificationRecordsRepository verificationRecordsRepository, IOptions <Config> config)
 {
     _msisLookupService             = msisLookupService;
     _logger                        = logger;
     _verificationLimit             = verificationLimit;
     _verificationRecordsRepository = verificationRecordsRepository;
     _config                        = config.Value;
 }
 public Handler(IMsisLookupService msisLookupService,
                ILogger <CreateFromExternalAuthentication> logger,
                IVerificationLimit verificationLimit,
                IVerificationRecordsRepository verificationRecordsRepository,
                IPseudonymFactory pseudonymFactory)
 {
     _msisLookupService             = msisLookupService;
     _logger                        = logger;
     _verificationLimit             = verificationLimit;
     _verificationRecordsRepository = verificationRecordsRepository;
     _pseudonymFactory              = pseudonymFactory;
 }
 public MsisHealthCheck(IMsisLookupService msisLookupService, ILogger <MsisHealthCheck> logger)
 {
     _msisLookupService = msisLookupService;
     _logger            = logger;
 }