public ProductManufacturerMappingsController(IProductManufacturerMappingsApiService productManufacturerMappingsService,
                                              IManufacturerService manufacturerService,
                                              IJsonFieldsSerializer jsonFieldsSerializer,
                                              IAclService aclService,
                                              ICustomerService customerService,
                                              IStoreMappingService storeMappingService,
                                              IStoreService storeService,
                                              IDiscountService discountService,
                                              ICustomerActivityService customerActivityService,
                                              ILocalizationService localizationService,
                                              IManufacturerApiService manufacturerApiService,
                                              IProductApiService productApiService,
                                              IPictureService pictureService)
     : base(jsonFieldsSerializer, aclService, customerService, storeMappingService, storeService, discountService, customerActivityService, localizationService, pictureService)
 {
     _productManufacturerMappingsService = productManufacturerMappingsService;
     _manufacturerService    = manufacturerService;
     _manufacturerApiService = manufacturerApiService;
     _productApiService      = productApiService;
 }
示例#2
0
 public ManufacturersController(IJsonFieldsSerializer jsonFieldsSerializer,
                                IAclService aclService,
                                ICustomerService customerService,
                                IStoreMappingService storeMappingService,
                                IStoreService storeService,
                                IDiscountService discountService,
                                ICustomerActivityService customerActivityService,
                                ILocalizationService localizationService,
                                IPictureService pictureService,
                                IDTOHelper dtoHelper,
                                IManufacturerService manufacturerService,
                                IManufacturerApiService manufacturerApiService,
                                IUrlRecordService urlRecordService,
                                IFactory <Manufacturer> factory)
     : base(jsonFieldsSerializer, aclService, customerService, storeMappingService, storeService, discountService, customerActivityService, localizationService, pictureService)
 {
     _dtoHelper              = dtoHelper;
     _manufacturerService    = manufacturerService;
     _manufacturerApiService = manufacturerApiService;
     _urlRecordService       = urlRecordService;
     _factory = factory;
 }
 public ManufacturerController(IManufacturerApiService manufacturerApiService, IPermissionService permissionService)
 {
     _manufacturerApiService = manufacturerApiService;
     _permissionService      = permissionService;
 }