Exemple #1
0
 public CompanyInformationViewService(IRepository <CompanyInformationView> repository,
                                      CompanyInformationSettings companyInformationSettings,
                                      ICompanyInformationService companyInfromationService,
                                      CatalogSettings catalogSettings)
 {
     this._catalogSettings            = catalogSettings;
     this._repository                 = repository;
     this._companyInformationSettings = companyInformationSettings;
     this._companyInfromationService  = companyInfromationService;
 }
Exemple #2
0
 public DownloadController(IDownloadService downloadService, IProductService productService,
                           IOrderService orderService, IWorkContext workContext, CustomerSettings customerSettings,
                           ICompanyInformationService companyInformationService)
 {
     this._downloadService           = downloadService;
     this._productService            = productService;
     this._orderService              = orderService;
     this._workContext               = workContext;
     this._customerSettings          = customerSettings;
     this._companyInformationService = companyInformationService;
 }
Exemple #3
0
        public NewsController(INewsService newsService,
                              IWorkContext workContext, IPictureService pictureService, ILocalizationService localizationService,
                              ICustomerContentService customerContentService, IDateTimeHelper dateTimeHelper,
                              IWorkflowMessageService workflowMessageService, IWebHelper webHelper,
                              ICacheManager cacheManager, ICustomerActivityService customerActivityService,
                              MediaSettings mediaSettings, NewsSettings newsSettings,
                              LocalizationSettings localizationSettings, CustomerSettings customerSettings,
                              StoreInformationSettings storeInformationSettings, CaptchaSettings captchaSettings,
                              ILanguageService languageService,
                              IUrlRecordService urlRecordService,
                              IGenericAttributeService genericAttributeService,
                              ICompanyInformationService companyInformationService,
                              ISettingService settingService)
        {
            this._newsService            = newsService;
            this._workContext            = workContext;
            this._pictureService         = pictureService;
            this._localizationService    = localizationService;
            this._customerContentService = customerContentService;
            this._dateTimeHelper         = dateTimeHelper;
            this._workflowMessageService = workflowMessageService;
            this._webHelper               = webHelper;
            this._cacheManager            = cacheManager;
            this._customerActivityService = customerActivityService;

            this._mediaSettings             = mediaSettings;
            this._newsSettings              = newsSettings;
            this._localizationSettings      = localizationSettings;
            this._customerSettings          = customerSettings;
            this._storeInformationSettings  = storeInformationSettings;
            this._captchaSettings           = captchaSettings;
            this._languageService           = languageService;
            this._urlRecordService          = urlRecordService;
            this._genericAttributeService   = genericAttributeService;
            this._companyInformationService = companyInformationService;
            this._settingService            = settingService;
        }
Exemple #4
0
 public CompanyController(ICompanyInformationService companyInformationService,
                          ICustomerService customerService,
                          IWorkContext workContext,
                          IPictureService pictureService,
                          IGenericAttributeService genericAttributeService,
                          INewsService newsService,
                          IProductViewService productViewService,
                          ICompanyInformationViewService companyinformationViewService,
                          IProductService productService,
                          NewsSettings newsSettings,
                          CatalogSettings catalogSettings)
 {
     this._companyInformationService = companyInformationService;
     this._customerService           = customerService;
     this._workContext                   = workContext;
     this._pictureSerice                 = pictureService;
     this._genericAttibuteService        = genericAttributeService;
     this._newsService                   = newsService;
     this._productViewService            = productViewService;
     this._productService                = productService;
     this._companyinformationViewService = companyinformationViewService;
     this._newsSettings                  = newsSettings;
     this._catalogSettings               = catalogSettings;
 }