Ejemplo n.º 1
0
 public AdminAccountController(
     UserManager <User> userManager,
     Services.Abstractions.IAuthenticationService authenticationService,
     IWebHostEnvironment hostingEnvironment)
 {
     this.userManager           = userManager;
     this.authenticationService = authenticationService;
     this.hostingEnvironment    = hostingEnvironment;
 }
Ejemplo n.º 2
0
 public AdminAccountController(
     UserManager <User> userManager,
     Services.Abstractions.IAuthenticationService authenticationService,
     IWebHostEnvironment hostingEnvironment,
     IIdentityService identityService,
     IEmailService emailService)
 {
     this.userManager           = userManager;
     this.authenticationService = authenticationService;
     this.hostingEnvironment    = hostingEnvironment;
     this.identityService       = identityService;
     this.emailService          = emailService;
 }