Example #1
0
 public CartProductService(IItemService productService, IInventorySearchService inventoryService, IPricingEvaluatorService pricingEvaluatorService, IMapper mapper)
 {
     _productService          = productService;
     _inventorySearchService  = inventoryService;
     _pricingEvaluatorService = pricingEvaluatorService;
     _mapper = mapper;
 }
Example #2
0
 public EvalProductsPricesMiddleware(
     IMapper mapper,
     IPricingEvaluatorService pricingEvaluatorService,
     IGenericPipelineLauncher pipeline,
     IStoreService storeService)
 {
     _mapper = mapper;
     _pricingEvaluatorService = pricingEvaluatorService;
     _pipeline     = pipeline;
     _storeService = storeService;
 }
 public CartProductServiceFake(IItemService productService
                               , IInventorySearchService inventoryService
                               , IPricingEvaluatorService pricingEvaluatorService
                               , IMapper mapper) : base(productService, inventoryService, pricingEvaluatorService, mapper)
 {
 }