public CatalogModuleProductsController(IItemService itemsService, ICatalogService catalogService, ICategoryService categoryService,
                                        ISkuGenerator skuGenerator, IProductAssociationSearchService productAssociationSearchService, IPropertyService propertyService)
 {
     _itemsService    = itemsService;
     _categoryService = categoryService;
     _catalogService  = catalogService;
     _skuGenerator    = skuGenerator;
     _productAssociationSearchService = productAssociationSearchService;
     _propertyService = propertyService;
 }
 public CatalogModuleProductsController(IItemService itemsService, IBlobUrlResolver blobUrlResolver, ICatalogService catalogService, ICategoryService categoryService,
                                        ISkuGenerator skuGenerator, ISecurityService securityService, IPermissionScopeService permissionScopeService, IProductAssociationSearchService productAssociationSearchService)
     : base(securityService, permissionScopeService)
 {
     _itemsService    = itemsService;
     _categoryService = categoryService;
     _blobUrlResolver = blobUrlResolver;
     _catalogService  = catalogService;
     _skuGenerator    = skuGenerator;
     _productAssociationSearchService = productAssociationSearchService;
 }
Example #3
0
 public CatalogModuleProductsController(
     IItemService itemsService
     , ICatalogService catalogService
     , ICategoryService categoryService
     , ISkuGenerator skuGenerator
     , IProductAssociationSearchService productAssociationSearchService
     , IAuthorizationService authorizationService
     , IOptions <MvcNewtonsoftJsonOptions> jsonOptions)
 {
     _itemsService    = itemsService;
     _categoryService = categoryService;
     _catalogService  = catalogService;
     _skuGenerator    = skuGenerator;
     _productAssociationSearchService = productAssociationSearchService;
     _authorizationService            = authorizationService;
     _jsonOptions = jsonOptions.Value;
 }
 public CatalogModuleAssociationsController(IAssociationService associationService, IProductAssociationSearchService productAssociationSearchService)
 {
     _associationService = associationService;
     _productAssociationSearchService = productAssociationSearchService;
 }
 public CatalogModuleProductsController(IItemService itemsService, IProductAssociationSearchService productAssociationSearchService)
 {
     _itemsService = itemsService;
     _productAssociationSearchService = productAssociationSearchService;
 }
Example #6
0
 public SearchProductAssociationsQueryHandler(IProductAssociationSearchService productAssociationSearchService, IMapper mapper)
 {
     _mapper = mapper;
     _productAssociationSearchService = productAssociationSearchService;
 }