Esempio n. 1
0
 public ProductCategoriesAttributeService(IProductCategoriesAttributeRepository productCategoriesAttributeRepository,
                                          IAttributeRepository attributeRepository,
                                          IProductCategoryRepository productCategoryRepository,
                                          IResourceService <SharedResource> sharedResourceService,
                                          IResourceService <GhmWarehouseResource> resourceService)
 {
     _productCategoriesAttributeRepository = productCategoriesAttributeRepository;
     _productCategoryRepository            = productCategoryRepository;
     _attributeRepository   = attributeRepository;
     _sharedResourceService = sharedResourceService;
     _resourceService       = resourceService;
 }
Esempio n. 2
0
 public ProductCategoryService(IProductCategoryRepository productCategoryRepository, IProductCategoryTranslationRepository productCategoryTranslationRepository,
                               IResourceService <SharedResource> sharedResourceService, IResourceService <GhmWarehouseResource> productResourceService,
                               IProductCategoriesAttributeRepository productCategoriesAttributeRepository, IAttributeRepository attributeRepository,
                               IProductsCategorieRepository productsCategorieRepository)
 {
     _productCategoryRepository            = productCategoryRepository;
     _productCategoryTranslationRepository = productCategoryTranslationRepository;
     _sharedResourceService  = sharedResourceService;
     _productResourceService = productResourceService;
     _productCategoriesAttributeRepository = productCategoriesAttributeRepository;
     _attributeRepository         = attributeRepository;
     _productsCategorieRepository = productsCategorieRepository;
 }