Ejemplo n.º 1
0
        public ExternalValidator(IExternalAuthManager externalAuthManager, LogInManager logInManager, ITenantCache tenantCache, AbpLoginResultTypeHelper abpLoginResultTypeHelper, UserRegistrationManager userRegistrationManager,
                                 IServiceAuthManager serviceAuthManager)
        {
            _externalAuthManager      = externalAuthManager;
            _logInManager             = logInManager;
            _tenantCache              = tenantCache;
            _abpLoginResultTypeHelper = abpLoginResultTypeHelper;
            _userRegistrationManager  = userRegistrationManager;

            _serviceAuthManager = serviceAuthManager;
        }
Ejemplo n.º 2
0
 public TokenAuthController(
     LogInManager logInManager,
     ITenantCache tenantCache,
     AbpLoginResultTypeHelper abpLoginResultTypeHelper,
     TokenAuthConfiguration configuration,
     IExternalAuthConfiguration externalAuthConfiguration,
     IExternalAuthManager externalAuthManager,
     UserRegistrationManager userRegistrationManager,
     IServiceAuthManager serviceAuthManager)
 {
     _logInManager              = logInManager;
     _tenantCache               = tenantCache;
     _abpLoginResultTypeHelper  = abpLoginResultTypeHelper;
     _configuration             = configuration;
     _externalAuthConfiguration = externalAuthConfiguration;
     _externalAuthManager       = externalAuthManager;
     _userRegistrationManager   = userRegistrationManager;
     _serviceAuthManager        = serviceAuthManager;
 }