Ejemplo n.º 1
0
 public SendPasswordResetTokenEmailHandler(ApplicationUserManager userManager,
                                           NotificationConfiguration notificationConfiguration,
                                           IEmailSender emailSender,
                                           IEmailContentProvider <PasswordResetHasBeenGeneratedNotification> emailContentProvider)
 {
     this.UserManager          = userManager;
     this.Configuration        = notificationConfiguration;
     this.EmailSender          = emailSender;
     this.EmailContentProvider = emailContentProvider;
 }
Ejemplo n.º 2
0
 public SendEmailConfirmationHandler(ApplicationUserManager userManager,
                                     NotificationConfiguration notificationConfiguration,
                                     IEmailSender emailSender,
                                     IEmailContentProvider <UserRegisteredNotification> emailContentProvider)
 {
     this.UserManager          = userManager;
     this.Configuration        = notificationConfiguration;
     this.EmailSender          = emailSender;
     this.EmailContentProvider = emailContentProvider;
 }