public ImpersonateUserController(AppUserManager appUserManager, AppImpersonationTokenService appImpersonationTokenService, AppOwnerTokenChangeService appOwnerTokenChangeService, AuthenticationInfoFactory authenticationInfoFactory)
 {
     this._appUserManager = appUserManager;
     this._appImpersonationTokenService = appImpersonationTokenService;
     this._appOwnerTokenChangeService   = appOwnerTokenChangeService;
     this._authenticationInfoFactory    = authenticationInfoFactory;
 }
Exemplo n.º 2
0
 public AuthenticationController(AppUserManager appUserManager, SignInManager <AppUser> authenticationManager, ConfirmEmailMailer confirmEmailMailer, ForgotPasswordMailer forgotPasswordMailer, AppUserLoginEventService appUserLoginEventService, AuthenticationInfoFactory authenticationInfoFactory, AppOwnerTokenChangeService appOwnerTokenChangeService)
 {
     this._appUserManager             = appUserManager;
     this._authenticationManager      = authenticationManager;
     this._forgotPasswordMailer       = forgotPasswordMailer;
     this._appUserLoginEventService   = appUserLoginEventService;
     this._authenticationInfoFactory  = authenticationInfoFactory;
     this._appOwnerTokenChangeService = appOwnerTokenChangeService;
     this._confirmEmailMailer         = confirmEmailMailer;
 }