public OrdersManager(ICheckoutShopEntities context)
 {
     this.context = context;
 }
Beispiel #2
0
 public ProductsManager(ICheckoutShopEntities context)
 {
     this.context = context;
 }
 public OrdersManager()
 {
     this.context = new CheckoutShopEntities();
 }
Beispiel #4
0
 public ProductsManager()
 {
     this.context = new CheckoutShopEntities();
 }