Beispiel #1
0
 public MiniSiteManagementController(IMiniSiteService miniSiteService,
                                     IWorkContext workContext,
                                     IPictureService pictureService,
                                     ILocalizedEntityService localizedEntityService,
                                     ILanguageService languageService,
                                     IMiniSiteBannerService miniSiteBannerService,
                                     IMiniSiteTextPageService miniSiteTextPageService,
                                     IUrlRecordService urlRecordService,
                                     ILocalizedEntityService localizedEntityServer,
                                     ISliderItemService sliderItemService,
                                     StoreInformationSettings storeInformationSettings,
                                     IMiniSiteEmailSender miniSiteEmailSender,
                                     IWebHelper webHelper,
                                     ILocalizationService localizationService,
                                     IGenericAttributeService genericAttributeService)
 {
     this._miniSiteService          = miniSiteService;
     this._workContext              = workContext;
     this._pictureService           = pictureService;
     this._localizedEntityService   = localizedEntityService;
     this._languageService          = languageService;
     this._miniSiteBannerService    = miniSiteBannerService;
     this._miniSiteTextPageService  = miniSiteTextPageService;
     this._urlRecordService         = urlRecordService;
     this._localizedEntityService   = localizedEntityService;
     this._sliderItemService        = sliderItemService;
     this._storeInformationSettings = storeInformationSettings;
     this._miniSiteEmailSender      = miniSiteEmailSender;
     this._webHelper               = webHelper;
     this._localizationService     = localizationService;
     this._genericAttributeService = genericAttributeService;
 }
Beispiel #2
0
 public CommonController(ICacheManager cacheManager,
                         ILanguageService languageService,
                         IWorkContext workContext,
                         ILocalizationService localizationService,
                         IEmailAccountService emailAccountService,
                         IQueuedEmailService queuedEmailService,
                         EmailAccountSettings emailAccountSettings,
                         CommonSettings commonSettings,
                         IAddressService addressService,
                         IStateProvinceService stateProvinceService,
                         AddressSettings addressSettings,
                         ICountryService countryService,
                         IPictureService pictureService,
                         IUrlRecordService urlRecordService,
                         IMiniSiteTextPageService miniSiteTextPageService,
                         CatalogSettings catalogSettings,
                         IWebHelper webHelper)
 {
     this._cacheManager            = cacheManager;
     this._languageService         = languageService;
     this._workContext             = workContext;
     this._localizationService     = localizationService;
     this._emailAccountService     = emailAccountService;
     this._queuedEmailService      = queuedEmailService;
     this._emailAccountSettings    = emailAccountSettings;
     this._commonSettings          = commonSettings;
     this._addressService          = addressService;
     this._stateProvinceService    = stateProvinceService;
     this._addressSettings         = addressSettings;
     this._countryService          = countryService;
     this._pictureService          = pictureService;
     this._urlRecordService        = urlRecordService;
     this._miniSiteTextPageService = miniSiteTextPageService;
     this._catalogSettings         = catalogSettings;
     this._webHelper = webHelper;
 }