public SlugRouteService(IStorefrontMemoryCache memoryCache, ICommerce coreApi, ICatalogService catalogService, ICatalogModuleProducts catalogProductsApi, IApiChangesWatcher apiChangesWatcher)
 {
     _memoryCache       = memoryCache;
     _coreApi           = coreApi;
     _catalogService    = catalogService;
     _apiChangesWatcher = apiChangesWatcher;
 }
Exemple #2
0
 public CurrencyService(ICommerce commerceApi, IMemoryCache memoryCache)
 {
     _commerceApi = commerceApi;
     _memoryCache = memoryCache;
 }
Exemple #3
0
 //
 // GET: /Cemmend/
 public CemmendController(IsysMenusServices mSer, ICommerce monser) : base(mSer, "/Cemmend")
 {
     base.Commerce = monser;
 }
 public TaxEvaluator(ICommerce commerceApi, IMemoryCache memoryCache)
 {
     _commerceApi = commerceApi;
     _memoryCache = memoryCache;
 }
Exemple #5
0
 public HomeController(IsysMenusServices mSer, INewServices newSer, IMemberMsgServices Mser, IMemberDynamicServices MemberDynamicSer, IFSHistoryService fser, ISiteSetService siteService, ICommerce comSer) : base(mSer)
 {
     base.news         = newSer;
     base.FSHistorySer = fser;
     base.siteService  = siteService;
     base.Commerce     = comSer;
     base.memberMsgSer = Mser;
     base.memberSer    = MemberDynamicSer;
 }
Exemple #6
0
 public SlugRouteService(IMemoryCache memoryCache, ICommerce coreApi, ICatalogService catalogService, ICatalogModuleProducts catalogProductsApi)
 {
     _memoryCache    = memoryCache;
     _coreApi        = coreApi;
     _catalogService = catalogService;
 }
Exemple #7
0
 public CommerceController(IsysMenusServices mSer, ICommerce Commerce) : base(mSer)
 {
     base.Commerce = Commerce;
 }
 public CurrencyService(ICommerce commerceApi, IStorefrontMemoryCache memoryCache, IApiChangesWatcher apiChangesWatcher)
 {
     _commerceApi       = commerceApi;
     _memoryCache       = memoryCache;
     _apiChangesWatcher = apiChangesWatcher;
 }