Skip to content

Commit

Permalink
Issue 6348. removed redundant service
Browse files Browse the repository at this point in the history
  • Loading branch information
skoshelev committed Sep 26, 2022
1 parent b17b0a8 commit cc30440
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/Libraries/Nop.Services/Catalog/ProductService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ public partial class ProductService : IProductService
protected readonly IRepository<Shipment> _shipmentRepository;
protected readonly IRepository<StockQuantityHistory> _stockQuantityHistoryRepository;
protected readonly IRepository<TierPrice> _tierPriceRepository;
protected readonly IRepository<Warehouse> _warehouseRepository;
protected readonly IStaticCacheManager _staticCacheManager;
protected readonly IStoreMappingService _storeMappingService;
protected readonly IStoreService _storeService;
Expand Down Expand Up @@ -102,7 +101,6 @@ public ProductService(CatalogSettings catalogSettings,
IRepository<Shipment> shipmentRepository,
IRepository<StockQuantityHistory> stockQuantityHistoryRepository,
IRepository<TierPrice> tierPriceRepository,
IRepository<Warehouse> warehouseRepository,
IStaticCacheManager staticCacheManager,
IStoreService storeService,
IStoreMappingService storeMappingService,
Expand Down Expand Up @@ -140,7 +138,6 @@ public ProductService(CatalogSettings catalogSettings,
_shipmentRepository = shipmentRepository;
_stockQuantityHistoryRepository = stockQuantityHistoryRepository;
_tierPriceRepository = tierPriceRepository;
_warehouseRepository = warehouseRepository;
_staticCacheManager = staticCacheManager;
_storeMappingService = storeMappingService;
_storeService = storeService;
Expand Down

0 comments on commit cc30440

Please sign in to comment.