public ExternalAuthOpenIdController(IOpenIdProviderAuthorizer openIdProviderAuthorizer,
                                     IOpenAuthenticationService openAuthenticationService,
                                     ExternalAuthenticationSettings externalAuthenticationSettings)
 {
     this._openIdProviderAuthorizer       = openIdProviderAuthorizer;
     this._openAuthenticationService      = openAuthenticationService;
     this._externalAuthenticationSettings = externalAuthenticationSettings;
 }
 public ExternalAuthOpenIdController(IOpenIdProviderAuthorizer openIdProviderAuthorizer,
     IOpenAuthenticationService openAuthenticationService,
     ExternalAuthenticationSettings externalAuthenticationSettings)
 {
     this._openIdProviderAuthorizer = openIdProviderAuthorizer;
     this._openAuthenticationService = openAuthenticationService;
     this._externalAuthenticationSettings = externalAuthenticationSettings;
 }
 public ExternalAuthOpenIdController(IOpenIdProviderAuthorizer openIdProviderAuthorizer,
     IOpenAuthenticationService openAuthenticationService,
     ExternalAuthenticationSettings externalAuthenticationSettings,
     IStoreContext storeContext,
     IPluginFinder pluginFinder)
 {
     this._openIdProviderAuthorizer = openIdProviderAuthorizer;
     this._openAuthenticationService = openAuthenticationService;
     this._externalAuthenticationSettings = externalAuthenticationSettings;
     this._storeContext = storeContext;
     this._pluginFinder = pluginFinder;
 }
Exemplo n.º 4
0
 public ExternalAuthOpenIdController(IOpenIdProviderAuthorizer openIdProviderAuthorizer,
                                     IOpenAuthenticationService openAuthenticationService,
                                     ExternalAuthenticationSettings externalAuthenticationSettings,
                                     IStoreContext storeContext,
                                     IPluginFinder pluginFinder)
 {
     this._openIdProviderAuthorizer       = openIdProviderAuthorizer;
     this._openAuthenticationService      = openAuthenticationService;
     this._externalAuthenticationSettings = externalAuthenticationSettings;
     this._storeContext = storeContext;
     this._pluginFinder = pluginFinder;
 }
		private readonly ISettingService _settingService;	// codehint: sm-add

        public ExternalAuthOpenIdController(IOpenIdProviderAuthorizer openIdProviderAuthorizer,
            IOpenAuthenticationService openAuthenticationService,
            ExternalAuthenticationSettings externalAuthenticationSettings,
			IStoreContext storeContext,
			ISettingService settingService)
        {
            this._openIdProviderAuthorizer = openIdProviderAuthorizer;
            this._openAuthenticationService = openAuthenticationService;
            this._externalAuthenticationSettings = externalAuthenticationSettings;
			this._storeContext = storeContext;
			this._settingService = settingService;	// codehint: sm-add
        }
Exemplo n.º 6
0
        private readonly ISettingService _settingService;               // codehint: sm-add

        public ExternalAuthOpenIdController(IOpenIdProviderAuthorizer openIdProviderAuthorizer,
                                            IOpenAuthenticationService openAuthenticationService,
                                            ExternalAuthenticationSettings externalAuthenticationSettings,
                                            IStoreContext storeContext,
                                            ISettingService settingService)
        {
            this._openIdProviderAuthorizer       = openIdProviderAuthorizer;
            this._openAuthenticationService      = openAuthenticationService;
            this._externalAuthenticationSettings = externalAuthenticationSettings;
            this._storeContext   = storeContext;
            this._settingService = settingService;              // codehint: sm-add
        }