Ejemplo n.º 1
0
 public CurrencyService(
     IAsyncCacheService cacheService,
     ICurrencyData currencyData)
 {
     _currencyData = currencyData;
     _cacheService = cacheService;
 }
Ejemplo n.º 2
0
 public CmsMenuService(
     IAsyncCacheService asyncCacheService,
     ICmsMenuData cmsMenuData)
 {
     _cmsMenuData       = cmsMenuData;
     _asyncCacheService = asyncCacheService;
 }
Ejemplo n.º 3
0
 public ImageResizerMiddleware(RequestDelegate next, IHostingEnvironment env, IAsyncCacheService asyncCacheService)
 {
     _next = next;
     _env  = env;
     _asyncCacheService = asyncCacheService;
 }
Ejemplo n.º 4
0
 public UserService(IAsyncCacheService asyncCacheService, IUserData userData)
 {
     _asyncCacheService = asyncCacheService;
     _userData          = userData;
 }