public StoreService(IStoreModule storeApi, IStorefrontMemoryCache memoryCache, IApiChangesWatcher apiChangesWatcher, IPaymentModule paymentModule, ITaxModule taxModule)
 {
     _storeApi          = storeApi;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = apiChangesWatcher;
     _paymentModule     = paymentModule;
     _taxModule         = taxModule;
 }
Beispiel #2
0
 public TaxEvaluator(ITaxModule taxApi, IStorefrontMemoryCache memoryCache)
 {
     _taxApi      = taxApi;
     _memoryCache = memoryCache;
 }