示例#1
0
 public ShoppingCart(MedebrContext ctx)
 {
     _ctx = ctx;
 }
示例#2
0
 public OrderRepository(MedebrContext ctx, ShoppingCart shoppingCart, IProductRepository repository)
 {
     _ctx          = ctx;
     _shoppingCart = shoppingCart;
     _repository   = repository;
 }
示例#3
0
 public ProductRepository(MedebrContext ctx)
 {
     _ctx = ctx;
 }