Beispiel #1
0
 public CompanyRegisterController(
     UserManager <Employee> userManager,
     SignInManager <Employee> signInManager,
     RoleManager <IdentityRole> roleManager,
     ActivationInformant activationInformant,
     ApplicationDbContext context,
     IEmailSender emailSender,
     ISmsSender smsSender)
 {
     _userManager         = userManager;
     _signInManager       = signInManager;
     _roleManager         = roleManager;
     _activationInformant = activationInformant;
     _context             = context;
     _emailSender         = emailSender;
     _smsSender           = smsSender;
 }
Beispiel #2
0
 public HomeController(ActivationInformant activationInformant)
 {
     _activationInformant = activationInformant;
 }