Exemplo n.º 1
0
 public AccountController(UserManager <App_IdentityUser> userManager, SignInManager <App_IdentityUser> signInManager,
                          ILogger <AccountController> logger, IMailService mailService, IAuthorizedEmailRepo authorizedEmailRepo)
 {
     this.userManager         = userManager;
     this.signInManager       = signInManager;
     this.logger              = logger;
     this.mailService         = mailService;
     this.authorizedEmailRepo = authorizedEmailRepo;
 }
Exemplo n.º 2
0
 public AdministrationController(UserManager <App_IdentityUser> userManager, IAuthorizedEmailRepo authorizedEmailRepository)
 {
     this.userManager = userManager;
     this.authorizedEmailRepository = authorizedEmailRepository;
 }