public EmailConfirmationHandler(IConfirmationEmailService confirmationEmailService,
                                 ICustomerManager customerManager,
                                 ILogger <EmailConfirmationHandler> logger)
 {
     confirmationService  = confirmationEmailService;
     this.customerManager = customerManager;
     this.logger          = logger;
 }
Esempio n. 2
0
 public AuthService(IAuthTokenService tokenService,
                    IConfirmationEmailService emailConfirmationManager,
                    ICustomerManager customerManager,
                    ILogger <AuthService> logger)
 {
     this.tokenService             = tokenService;
     this.emailConfirmationManager = emailConfirmationManager;
     this.customerManager          = customerManager;
     this.logger = logger;
 }