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