Example #1
0
 public IdentityServerEventSink(IAccountGetterService accountGetterService, IAccountRepository accountRepository,
                                ICommunicationBus communicationBus)
 {
     _accountGetterService = accountGetterService;
     _accountRepository    = accountRepository;
     _communicationBus     = communicationBus;
 }
Example #2
0
 public ResourceOwnerPasswordValidator(IAccountGetterService accountGetterService,
                                       IAccountVerificationService accountVerificationService, IAccountClaimsCreatorService accountClaimsCreatorService)
 {
     _accountGetterService        = accountGetterService;
     _accountVerificationService  = accountVerificationService;
     _accountClaimsCreatorService = accountClaimsCreatorService;
 }
Example #3
0
 public UserCreationCompletedIntegrationEventHandler(IAccountGetterService accountGetterService, IAccountConfirmationRequestService accountConfirmationRequestService,
                                                     IIntegrationEventBus integrationEventBus, ILogger logger)
 {
     _accountGetterService = accountGetterService;
     _accountConfirmationRequestService = accountConfirmationRequestService;
     _integrationEventBus = integrationEventBus;
     _logger = logger;
 }
Example #4
0
 public DeleteAccountCommandHandler(IAccountGetterService accountGetterService, ICommunicationBus communicationBus,
                                    IIntegrationEventBus integrationEventBus, IAccountDataConsistencyService accountDataConsistencyService)
 {
     _accountGetterService          = accountGetterService;
     _communicationBus              = communicationBus;
     _integrationEventBus           = integrationEventBus;
     _accountDataConsistencyService = accountDataConsistencyService;
 }
Example #5
0
 public UpdateAccountRolesCommandHandler(IAccountRepository accountRepository, IRoleRepository roleRepository,
                                         IAccountGetterService accountGetterService, ICommunicationBus communicationBus)
 {
     _accountRepository    = accountRepository;
     _roleRepository       = roleRepository;
     _accountGetterService = accountGetterService;
     _communicationBus     = communicationBus;
 }
Example #6
0
 public ConfirmAccountCommandHandler(IAccountRepository accountRepository, IAccountGetterService accountGetterService,
                                     IAccountVerificationService accountVerificationService, ICommunicationBus communicationBus)
 {
     _accountRepository          = accountRepository;
     _accountGetterService       = accountGetterService;
     _accountVerificationService = accountVerificationService;
     _communicationBus           = communicationBus;
 }
Example #7
0
 public AccountProviderService(IAccountRepository accountRepository, IAccountGetterService accountGetterService,
                               IAccountCreatorService accountCreatorService, ICommunicationBus communicationBus)
 {
     _accountRepository     = accountRepository;
     _accountGetterService  = accountGetterService;
     _accountCreatorService = accountCreatorService;
     _communicationBus      = communicationBus;
 }
Example #8
0
 public UserCreationCompletedIntegrationEventFailureHandler(IAccountGetterService accountGetterService,
                                                            IAccountDataConsistencyService accountDataConsistencyService, IIntegrationEventBus integrationEventBus,
                                                            ILogger logger)
 {
     _accountGetterService = accountGetterService;
     _integrationEventBus  = integrationEventBus;
     _logger = logger;
     _accountDataConsistencyService = accountDataConsistencyService;
 }
Example #9
0
 public ResetPasswordCommandHandler(IAccountRepository accountRepository, IAccountGetterService accountGetterService,
                                    IAccountVerificationService accountVerificationService, IPasswordService passwordService, ICommunicationBus communicationBus)
 {
     _accountRepository          = accountRepository;
     _accountGetterService       = accountGetterService;
     _accountVerificationService = accountVerificationService;
     _passwordService            = passwordService;
     _communicationBus           = communicationBus;
 }
Example #10
0
 public LocalLoginInteractor(IAuthorizationService authorizationService, IClientRepository clientRepository,
                             IAccountGetterService accountGetterService, IAccountVerificationService accountVerificationService,
                             ISchemeService schemeService, IAccountClaimsCreatorService accountClaimsCreatorService, ISignInService signInService)
 {
     _authorizationService       = authorizationService;
     _clientRepository           = clientRepository;
     _accountGetterService       = accountGetterService;
     _accountVerificationService = accountVerificationService;
     _schemeService = schemeService;
     _accountClaimsCreatorService = accountClaimsCreatorService;
     _signInService = signInService;
 }
Example #11
0
 public GetAccountQueryHandler(IAccountGetterService accountGetterService, IMapper mapper)
 {
     _accountGetterService = accountGetterService;
     _mapper = mapper;
 }
Example #12
0
 public AccountVerificationService(IAccountGetterService accountGetterService, IPasswordService passwordService)
 {
     _accountGetterService = accountGetterService;
     _passwordService      = passwordService;
 }
Example #13
0
 public AccountGetterServiceTest()
 {
     _accountRepositoryMock = new Mock <IAccountRepository>();
     _accountGetterService  = new AccountGetterService(_accountRepositoryMock.Object);
 }
Example #14
0
 public ProfileService(IAccountGetterService accountRepository, IAccountClaimsCreatorService accountClaimsCreatorService)
 {
     _accountRepository           = accountRepository;
     _accountClaimsCreatorService = accountClaimsCreatorService;
 }