Example #1
0
 public PluginController(IPluginFinder pluginFinder,
                         IOfficialFeedManager officialFeedManager,
                         ILocalizationService localizationService,
                         IWebHelper webHelper,
                         IPermissionService permissionService,
                         ILanguageService languageService,
                         ISettingService settingService,
                         IStoreService storeService,
                         PaymentSettings paymentSettings,
                         ShippingSettings shippingSettings,
                         TaxSettings taxSettings,
                         ExternalAuthenticationSettings externalAuthenticationSettings,
                         WidgetSettings widgetSettings)
 {
     this._pluginFinder                   = pluginFinder;
     this._officialFeedManager            = officialFeedManager;
     this._localizationService            = localizationService;
     this._webHelper                      = webHelper;
     this._permissionService              = permissionService;
     this._languageService                = languageService;
     this._settingService                 = settingService;
     this._storeService                   = storeService;
     this._paymentSettings                = paymentSettings;
     this._shippingSettings               = shippingSettings;
     this._taxSettings                    = taxSettings;
     this._externalAuthenticationSettings = externalAuthenticationSettings;
     this._widgetSettings                 = widgetSettings;
 }
        public PluginController(IPluginFinder pluginFinder,
            IOfficialFeedManager officialFeedManager,
            ILocalizationService localizationService,
            IWebHelper webHelper,
            IPermissionService permissionService, 
            ILanguageService languageService,
            ISettingService settingService, 
            IStoreService storeService,
            PaymentSettings paymentSettings,
            ShippingSettings shippingSettings,
            TaxSettings taxSettings, 
            ExternalAuthenticationSettings externalAuthenticationSettings, 
            WidgetSettings widgetSettings)
		{
            this._pluginFinder = pluginFinder;
            this._officialFeedManager = officialFeedManager;
            this._localizationService = localizationService;
            this._webHelper = webHelper;
            this._permissionService = permissionService;
            this._languageService = languageService;
            this._settingService = settingService;
            this._storeService = storeService;
            this._paymentSettings = paymentSettings;
            this._shippingSettings = shippingSettings;
            this._taxSettings = taxSettings;
            this._externalAuthenticationSettings = externalAuthenticationSettings;
            this._widgetSettings = widgetSettings;
		}
Example #3
0
 public PluginModelFactory(IAclSupportedModelFactory aclSupportedModelFactory,
                           IBaseAdminModelFactory baseAdminModelFactory,
                           IExternalAuthenticationService externalAuthenticationService,
                           ILocalizationService localizationService,
                           ILocalizedModelFactory localizedModelFactory,
                           IOfficialFeedManager officialFeedManager,
                           IPaymentService paymentService,
                           IPluginFinder pluginFinder,
                           IShippingService shippingService,
                           IStoreMappingSupportedModelFactory storeMappingSupportedModelFactory,
                           IWidgetService widgetService,
                           TaxSettings taxSettings)
 {
     this._aclSupportedModelFactory      = aclSupportedModelFactory;
     this._baseAdminModelFactory         = baseAdminModelFactory;
     this._externalAuthenticationService = externalAuthenticationService;
     this._localizationService           = localizationService;
     this._localizedModelFactory         = localizedModelFactory;
     this._officialFeedManager           = officialFeedManager;
     this._paymentService  = paymentService;
     this._pluginFinder    = pluginFinder;
     this._shippingService = shippingService;
     this._storeMappingSupportedModelFactory = storeMappingSupportedModelFactory;
     this._widgetService = widgetService;
     this._taxSettings   = taxSettings;
 }
Example #4
0
 public PluginModelFactory(IAclSupportedModelFactory aclSupportedModelFactory,
                           IBaseAdminModelFactory baseAdminModelFactory,
                           IExternalAuthenticationService externalAuthenticationService,
                           ILocalizationService localizationService,
                           ILocalizedModelFactory localizedModelFactory,
                           IOfficialFeedManager officialFeedManager,
                           IPaymentService paymentService,
                           IPluginService pluginService,
                           IShippingService shippingService,
                           IStaticCacheManager cacheManager,
                           IStoreMappingSupportedModelFactory storeMappingSupportedModelFactory,
                           IWidgetService widgetService,
                           IWorkContext workContext,
                           TaxSettings taxSettings,
                           ILogger logger)
 {
     _aclSupportedModelFactory      = aclSupportedModelFactory;
     _baseAdminModelFactory         = baseAdminModelFactory;
     _externalAuthenticationService = externalAuthenticationService;
     _localizationService           = localizationService;
     _localizedModelFactory         = localizedModelFactory;
     _officialFeedManager           = officialFeedManager;
     _paymentService  = paymentService;
     _pluginService   = pluginService;
     _shippingService = shippingService;
     _cacheManager    = cacheManager;
     _storeMappingSupportedModelFactory = storeMappingSupportedModelFactory;
     _widgetService = widgetService;
     _workContext   = workContext;
     _taxSettings   = taxSettings;
     _logger        = logger;
 }
 public PluginController(IPluginFinder pluginFinder,
                         IOfficialFeedManager officialFeedManager,
                         ILocalizationService localizationService,
                         IWebHelper webHelper,
                         IPermissionService permissionService,
                         ILanguageService languageService,
                         ISettingService settingService,
                         IStoreService storeService,
                         ExternalAuthenticationSettings externalAuthenticationSettings,
                         WidgetSettings widgetSettings,
                         ICustomerActivityService customerActivityService,
                         ICustomerService customerService)
 {
     this._pluginFinder                   = pluginFinder;
     this._officialFeedManager            = officialFeedManager;
     this._localizationService            = localizationService;
     this._webHelper                      = webHelper;
     this._permissionService              = permissionService;
     this._languageService                = languageService;
     this._settingService                 = settingService;
     this._storeService                   = storeService;
     this._externalAuthenticationSettings = externalAuthenticationSettings;
     this._widgetSettings                 = widgetSettings;
     this._customerActivityService        = customerActivityService;
     this._customerService                = customerService;
 }
 public ProductController(IProductService productService, 
     IOfficialFeedManager feedManager,
     ICurrencyService currencyService)
 {
     _productService = productService;
     _feedManager = feedManager;
     _currencyService = currencyService;
 }
Example #7
0
 public PluginModelFactory(IAclSupportedModelFactory aclSupportedModelFactory,
                           IBaseAdminModelFactory baseAdminModelFactory,
                           IExternalAuthenticationService externalAuthenticationService,
                           ILocalizationService localizationService,
                           ILocalizedModelFactory localizedModelFactory,
                           IOfficialFeedManager officialFeedManager,
                           IPluginFinder pluginFinder,
                           IWidgetService widgetService)
 {
     this._aclSupportedModelFactory      = aclSupportedModelFactory;
     this._baseAdminModelFactory         = baseAdminModelFactory;
     this._externalAuthenticationService = externalAuthenticationService;
     this._localizationService           = localizationService;
     this._localizedModelFactory         = localizedModelFactory;
     this._officialFeedManager           = officialFeedManager;
     this._pluginFinder  = pluginFinder;
     this._widgetService = widgetService;
 }
Example #8
0
 public PluginController(IPluginFinder pluginFinder,
                         IOfficialFeedManager officialFeedManager,
                         ILocalizationService localizationService,
                         IWebHelper webHelper,
                         IPermissionService permissionService,
                         ILanguageService languageService,
                         ISettingService settingService,
                         ExternalAuthenticationSettings externalAuthenticationSettings, WidgetSettings wigetSettings)
 {
     _pluginFinder                   = pluginFinder;
     _officialFeedManager            = officialFeedManager;
     _localizationService            = localizationService;
     _webHelper                      = webHelper;
     _permissionService              = permissionService;
     _languageService                = languageService;
     _settingService                 = settingService;
     _externalAuthenticationSettings = externalAuthenticationSettings;
     _widgetSettings                 = wigetSettings;
 }
Example #9
0
 public PluginController(IPluginFinder pluginFinder,
                         IOfficialFeedManager officialFeedManager,
                         ILocalizationService localizationService,
                         IWebHelper webHelper,
                         IPermissionService permissionService,
                         ILanguageService languageService,
                         ISettingService settingService,
                         IStoreService storeService,
                         PaymentSettings paymentSettings,
                         ShippingSettings shippingSettings,
                         TaxSettings taxSettings,
                         ExternalAuthenticationSettings externalAuthenticationSettings,
                         WidgetSettings widgetSettings,
                         ICustomerActivityService customerActivityService,
                         ICustomerService customerService,
                         IUploadService uploadService,
                         IEventPublisher eventPublisher)
 {
     this._pluginFinder                   = pluginFinder;
     this._officialFeedManager            = officialFeedManager;
     this._localizationService            = localizationService;
     this._webHelper                      = webHelper;
     this._permissionService              = permissionService;
     this._languageService                = languageService;
     this._settingService                 = settingService;
     this._storeService                   = storeService;
     this._paymentSettings                = paymentSettings;
     this._shippingSettings               = shippingSettings;
     this._taxSettings                    = taxSettings;
     this._externalAuthenticationSettings = externalAuthenticationSettings;
     this._widgetSettings                 = widgetSettings;
     this._customerActivityService        = customerActivityService;
     this._customerService                = customerService;
     this._uploadService                  = uploadService;
     this._eventPublisher                 = eventPublisher;
 }