Ejemplo n.º 1
0
 public CustomerReviewService(ICustomerReviews customerReviewsApi, IApiChangesWatcher apiChangesWatcher, IStorefrontMemoryCache memoryCache, IWorkContextAccessor workContextAccessor)
 {
     _customerReviewsApi  = customerReviewsApi;
     _apiChangesWatcher   = apiChangesWatcher;
     _memoryCache         = memoryCache;
     _workContextAccessor = workContextAccessor;
 }
Ejemplo n.º 2
0
 public MenuLinkListServiceImpl(IMenu cmsApi, ICatalogService catalogService, IMemoryCache memoryCache, IApiChangesWatcher apiChangesWatcher)
 {
     _cmsApi            = cmsApi;
     _catalogService    = catalogService;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = apiChangesWatcher;
 }
Ejemplo n.º 3
0
 public CatalogService(IWorkContextAccessor workContextAccessor
                       , ICatalogModuleCategories categoriesApi
                       , ICatalogModuleProducts productsApi
                       , ICatalogModuleSearch searchApi
                       , IPricingService pricingService
                       , IMemberService customerService
                       , ISubscriptionService subscriptionService
                       , IInventoryService inventoryService
                       , IStorefrontMemoryCache memoryCache
                       , IApiChangesWatcher changesWatcher
                       , IStorefrontUrlBuilder storefrontUrlBuilder)
 {
     _workContextAccessor  = workContextAccessor;
     _categoriesApi        = categoriesApi;
     _productsApi          = productsApi;
     _searchApi            = searchApi;
     _categoriesApi        = categoriesApi;
     _pricingService       = pricingService;
     _inventoryService     = inventoryService;
     _customerService      = customerService;
     _subscriptionService  = subscriptionService;
     _memoryCache          = memoryCache;
     _apiChangesWatcher    = changesWatcher;
     _storefrontUrlBuilder = storefrontUrlBuilder;
 }
Ejemplo n.º 4
0
 public SlugRouteService(IStorefrontMemoryCache memoryCache, ICommerce coreApi, ICatalogService catalogService, ICatalogModuleProducts catalogProductsApi, IApiChangesWatcher apiChangesWatcher)
 {
     _memoryCache       = memoryCache;
     _coreApi           = coreApi;
     _catalogService    = catalogService;
     _apiChangesWatcher = apiChangesWatcher;
 }
Ejemplo n.º 5
0
 public MarketingService(IMarketingModuleDynamicContent dynamicContentApi, IStorefrontMemoryCache memoryCache, IApiChangesWatcher changesWatcher, IWorkContextAccessor workContextAccessor)
 {
     _dynamicContentApi   = dynamicContentApi;
     _memoryCache         = memoryCache;
     _apiChangesWatcher   = changesWatcher;
     _workContextAccessor = workContextAccessor;
 }
Ejemplo n.º 6
0
 public DemoMemberService(ICustomerModule customerApi, IDemoSearch demoSearchApi, IStorefrontMemoryCache memoryCache, IApiChangesWatcher apiChangesWatcher)
     : base(customerApi, memoryCache, apiChangesWatcher)
 {
     _customerApi       = customerApi;
     _demoSearchApi     = demoSearchApi;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = apiChangesWatcher;
 }
 public StoreService(IStoreModule storeApi, IStorefrontMemoryCache memoryCache, IApiChangesWatcher apiChangesWatcher, IPaymentModule paymentModule, ITaxModule taxModule)
 {
     _storeApi          = storeApi;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = apiChangesWatcher;
     _paymentModule     = paymentModule;
     _taxModule         = taxModule;
 }
Ejemplo n.º 8
0
 public CustomerReviewService(
     ICustomerReviews customerReviewsApi,
     IStorefrontMemoryCache memoryCache,
     IApiChangesWatcher apiChangesWatcher)
 {
     _customerReviewsApi = customerReviewsApi;
     _memoryCache        = memoryCache;
     _apiChangesWatcher  = apiChangesWatcher;
 }
Ejemplo n.º 9
0
 public MemberService(ICustomerModule customerApi, ICustomerOrderService orderService,
                      IQuoteService quoteService, ISubscriptionService subscriptionService, IMemoryCache memoryCache, IApiChangesWatcher changesWatcher)
 {
     _customerApi         = customerApi;
     _orderService        = orderService;
     _quoteService        = quoteService;
     _memoryCache         = memoryCache;
     _subscriptionService = subscriptionService;
     _apiChangesWatcher   = changesWatcher;
 }
Ejemplo n.º 10
0
 public PricingService(IPricingModule pricingApi,
                       ITaxEvaluator taxEvaluator,
                       IPromotionEvaluator promotionEvaluator,
                       IInventoryService inventoryService, IMemoryCache memoryCache, IApiChangesWatcher apiChangesWatcher)
 {
     _pricingApi         = pricingApi;
     _taxEvaluator       = taxEvaluator;
     _promotionEvaluator = promotionEvaluator;
     _inventoryService   = inventoryService;
     _memoryCache        = memoryCache;
     _apiChangesWatcher  = apiChangesWatcher;
 }
 public DynamicAssociationsProvider(
     ICatalogService catalogService,
     IAssociations associationsApi,
     IStorefrontMemoryCache memoryCache,
     IApiChangesWatcher apiChangesWatcher
     )
 {
     _catalogService    = catalogService;
     _associationsApi   = associationsApi;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = apiChangesWatcher;
 }
 public DemoCatalogService(IWorkContextAccessor workContextAccessor,
                           ICatalogModuleCategories categoriesApi, ICatalogModuleProducts productsApi,
                           ICatalogModuleAssociations associationsApi, ICatalogModuleIndexedSearch searchApi,
                           IPricingService pricingService, IMemberService customerService,
                           ISubscriptionService subscriptionService, IInventoryService inventoryService,
                           IStorefrontMemoryCache memoryCache, IApiChangesWatcher changesWatcher,
                           IStorefrontUrlBuilder storefrontUrlBuilder) :
     base(workContextAccessor,
          categoriesApi, productsApi, associationsApi, searchApi,
          pricingService, customerService, subscriptionService, inventoryService,
          memoryCache, changesWatcher,
          storefrontUrlBuilder)
 {
 }
Ejemplo n.º 13
0
 public DemoMemberService(ICustomerModule customerApi, IStorefrontMemoryCache memoryCache, IApiChangesWatcher changesWatcher)
     : base(customerApi, memoryCache, changesWatcher)
 {
     _customerApi = customerApi;
 }
Ejemplo n.º 14
0
 public InventoryService(IInventoryModule inventoryApi, IStorefrontMemoryCache memoryCache, IApiChangesWatcher apiChangesWatcher)
 {
     _inventoryApi      = inventoryApi;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = apiChangesWatcher;
 }
Ejemplo n.º 15
0
 public MemberService(ICustomerModule customerApi, IStorefrontMemoryCache memoryCache, IApiChangesWatcher changesWatcher)
 {
     _customerApi       = customerApi;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = changesWatcher;
 }
Ejemplo n.º 16
0
 public CurrencyService(ICommerce commerceApi, IStorefrontMemoryCache memoryCache, IApiChangesWatcher apiChangesWatcher)
 {
     _commerceApi       = commerceApi;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = apiChangesWatcher;
 }
Ejemplo n.º 17
0
 public MarketingService(IMarketingModuleDynamicContent dynamicContentApi, IMemoryCache memoryCache, IApiChangesWatcher changesWatcher)
 {
     _dynamicContentApi = dynamicContentApi;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = changesWatcher;
 }
Ejemplo n.º 18
0
 public StoreService(IStoreModule storeApi, IMemoryCache memoryCache, IApiChangesWatcher apiChangesWatcher)
 {
     _storeApi          = storeApi;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = apiChangesWatcher;
 }
 public CustomerReviewService(ICustomerReviews customerReviewsApi, IStorefrontMemoryCache memoryCash, IApiChangesWatcher changesWatcher)
 {
     _customerReviewsApi = customerReviewsApi;
     _memoryCache        = memoryCash;
     _changesWatcher     = changesWatcher;
 }