Exemplo n.º 1
0
 public ProductsRepository(
     CouponDbContext couponDbContext,
     IProductsCache productCache
     )
 {
     _productCache = productCache;
     _db           = couponDbContext;
 }
Exemplo n.º 2
0
 public PointOfSaleService(IProductsCache productsCache)
 {
     this.productsCache = productsCache;
 }