Example #1
0
        public CommonViewComponent(
            ICommonWebService commonWebService,
            ILocalizationService localizationService,
            IWorkContext workContext,
            IStoreContext storeContext,
            ICustomerActivityService customerActivityService,
            ICustomerActionEventService customerActionEventService,
            IPopupService popupService,
            IInteractiveFormService interactiveFormService,

            StoreInformationSettings storeInformationSettings,
            CommonSettings commonSettings,
            ForumSettings forumSettings,
            LocalizationSettings localizationSettings,
            CaptchaSettings captchaSettings,
            VendorSettings vendorSettings
            )
        {
            this._commonWebService           = commonWebService;
            this._localizationService        = localizationService;
            this._workContext                = workContext;
            this._storeContext               = storeContext;
            this._customerActivityService    = customerActivityService;
            this._customerActionEventService = customerActionEventService;
            this._popupService               = popupService;
            this._interactiveFormService     = interactiveFormService;

            this._storeInformationSettings = storeInformationSettings;
            this._commonSettings           = commonSettings;
            this._forumSettings            = forumSettings;
            this._localizationSettings     = localizationSettings;
            this._captchaSettings          = captchaSettings;
            this._vendorSettings           = vendorSettings;
        }
Example #2
0
 public HeaderLinksViewComponent(ICommonWebService commonWebService, IWorkContext workContext,
                                 ILocalizationService localizationService, ForumSettings forumSettings,
                                 IStoreContext storeContext)
 {
     this._commonWebService    = commonWebService;
     this._workContext         = workContext;
     this._localizationService = localizationService;
     this._forumSettings       = forumSettings;
     this._storeContext        = storeContext;
 }
Example #3
0
 public LogoViewComponent(ICommonWebService commonWebService)
 {
     this._commonWebService = commonWebService;
 }
Example #4
0
 public LanguageSelectorViewComponent(ICommonWebService commonWebService)
 {
     this._commonWebService = commonWebService;
 }
Example #5
0
 public FaviconViewComponent(ICommonWebService commonWebService)
 {
     this._commonWebService = commonWebService;
 }
Example #6
0
 public TaxTypeSelectorViewComponent(ICommonWebService commonWebService)
 {
     this._commonWebService = commonWebService;
 }
Example #7
0
 public CurrencySelectorViewComponent(ICommonWebService commonWebService)
 {
     this._commonWebService = commonWebService;
 }
Example #8
0
 public AdminHeaderLinksViewComponent(ICommonWebService commonWebService,
                                      IWorkContext workContext)
 {
     this._commonWebService = commonWebService;
     this._workContext      = workContext;
 }
Example #9
0
 public StoreThemeSelectorViewComponent(ICommonWebService commonWebService,
                                        StoreInformationSettings storeInformationSettings)
 {
     this._commonWebService         = commonWebService;
     this._storeInformationSettings = storeInformationSettings;
 }
Example #10
0
 public FooterViewComponent(ICommonWebService commonWebService)
 {
     this._commonWebService = commonWebService;
 }