Example #1
0
 protected ContextService(NutrientUserManager userManager, IDomainNotificationHandler domainNotificationHandler, IIntegrationServiceBus integrationBus, ILogger logger)
     : base(domainNotificationHandler, integrationBus, logger)
 {
     _userManager = userManager;
 }
Example #2
0
 public AccountService(NutrientUserManager userManager, NutrientSignInManager signInManager, IEmailDispatcher emailDispatcher, IDomainNotificationHandler domainNotificationHandler, IIntegrationServiceBus integrationBus, ILogger <AccountService> logger)
     : base(userManager, domainNotificationHandler, integrationBus, logger)
 {
     _signInManager   = signInManager;
     _emailDispatcher = emailDispatcher;
 }
Example #3
0
 public UsersService(IEmailDispatcher emailDispatcher, NutrientUserManager userManager, IDomainNotificationHandler domainNotificationHandler, IIntegrationServiceBus integrationBus, ILogger <UsersService> logger)
     : base(userManager, domainNotificationHandler, integrationBus, logger)
 {
     _emailDispatcher = emailDispatcher;
 }