Exemplo n.º 1
0
 public ShoppingCart(MedebrContext ctx)
 {
     _ctx = ctx;
 }
Exemplo n.º 2
0
 public OrderRepository(MedebrContext ctx, ShoppingCart shoppingCart, IProductRepository repository)
 {
     _ctx          = ctx;
     _shoppingCart = shoppingCart;
     _repository   = repository;
 }
Exemplo n.º 3
0
 public ProductRepository(MedebrContext ctx)
 {
     _ctx = ctx;
 }