public GetAllBrandsCachedQueryHandler(IBrandCacheRepository brandCache, IMapper mapper)
 {
     _brandCache = brandCache;
     _mapper     = mapper;
 }
Exemplo n.º 2
0
 public GetProductByIdQueryHandler(IBrandCacheRepository productCache, IMapper mapper)
 {
     _brandCache = productCache;
     _mapper     = mapper;
 }
Exemplo n.º 3
0
 public GetAllBrandsCachedQueryHandler(IBrandCacheRepository productCache, IMapper mapper)
 {
     _productCache = productCache;
     _mapper       = mapper;
 }