public ProductAttributesController(IJsonFieldsSerializer jsonFieldsSerializer,
                                    ICustomerActivityService customerActivityService,
                                    ILocalizationService localizationService,
                                    IAclService aclService,
                                    IStoreMappingService storeMappingService,
                                    IStoreService storeService,
                                    ICustomerService customerService,
                                    IDiscountService discountService,
                                    IPictureService pictureService,
                                    IProductAttributeService productAttributeService,
                                    IProductAttributesApiService productAttributesApiService,
                                    IDTOHelper dtoHelper) : base(jsonFieldsSerializer, aclService, customerService, storeMappingService, storeService, discountService, customerActivityService, localizationService, pictureService)
 {
     _productAttributeService     = productAttributeService;
     _productAttributesApiService = productAttributesApiService;
     _dtoHelper = dtoHelper;
 }
Esempio n. 2
0
 public SpecificationAttributesController(IJsonFieldsSerializer jsonFieldsSerializer,
                                          ICustomerActivityService customerActivityService,
                                          ILocalizationService localizationService,
                                          IAclService aclService,
                                          IStoreMappingService storeMappingService,
                                          IStoreService storeService,
                                          ICustomerService customerService,
                                          IDiscountService discountService,
                                          IPictureService pictureService,
                                          ISpecificationAttributeService specificationAttributeService,
                                          ISpecificationAttributeApiService specificationAttributesApiService,
                                          IDTOHelper dtoHelper,
                                          ILocalizedEntityService localizedEntityService,
                                          IProductAttributesApiService productAttributesApiService,
                                          IUrlRecordService urlRecordService) : base(jsonFieldsSerializer, aclService, customerService, storeMappingService, storeService, discountService, customerActivityService, localizationService, pictureService)
 {
     _specificationAttributeService    = specificationAttributeService;
     _specificationAttributeApiService = specificationAttributesApiService;
     _dtoHelper = dtoHelper;
     _localizedEntityService      = localizedEntityService;
     _urlRecordService            = urlRecordService;
     _productAttributesApiService = productAttributesApiService;
 }