Exemple #1
0
 public TemplateController(ICategoryTemplateService categoryTemplateService,
                           IDestinationTemplateService destinationTemplateService,
                           IProductTemplateService productTemplateService,
                           ITopicTemplateService topicTemplateService,
                           IPermissionService permissionService)
 {
     this._categoryTemplateService    = categoryTemplateService;
     this._destinationTemplateService = destinationTemplateService;
     this._productTemplateService     = productTemplateService;
     this._topicTemplateService       = topicTemplateService;
     this._permissionService          = permissionService;
 }
Exemple #2
0
        public DestinationController(ICategoryService categoryService,
                                     IDestinationService destinationService,
                                     IDestinationTemplateService destinationTemplateService,
                                     IProductService productService,
                                     ICustomerService customerService,
                                     IStoreService storeService,
                                     IStoreMappingService storeMappingService,
                                     IUrlRecordService urlRecordService,
                                     IPictureService pictureService,
                                     ILanguageService languageService,
                                     ILocalizationService localizationService,
                                     ILocalizedEntityService localizedEntityService,
                                     IExportManager exportManager,
                                     IDiscountService discountService,
                                     ICustomerActivityService customerActivityService,

                                     IAclService aclService,
                                     IPermissionService permissionService,
                                     CatalogSettings catalogSettings,
                                     IWorkContext workContext,
                                     IImportManager importManager,
                                     ICacheManager cacheManager)
        {
            this._categoryService            = categoryService;
            this._destinationTemplateService = destinationTemplateService;
            this._destinationService         = destinationService;
            this._productService             = productService;
            this._customerService            = customerService;
            this._storeService            = storeService;
            this._storeMappingService     = storeMappingService;
            this._urlRecordService        = urlRecordService;
            this._pictureService          = pictureService;
            this._languageService         = languageService;
            this._localizationService     = localizationService;
            this._localizedEntityService  = localizedEntityService;
            this._exportManager           = exportManager;
            this._discountService         = discountService;
            this._customerActivityService = customerActivityService;

            this._aclService        = aclService;
            this._permissionService = permissionService;
            this._catalogSettings   = catalogSettings;
            this._workContext       = workContext;
            this._importManager     = importManager;
            this._cacheManager      = cacheManager;
        }