Beispiel #1
0
 public OrderRepository(DayAndNigthDbContext dayAndNigthDbContext, ShoppingCart shoppingCart)
 {
     _dayAndNigthDbContext = dayAndNigthDbContext;
     _shoppingCart         = shoppingCart;
 }
 public CategoryRepository(DayAndNigthDbContext dayAndNigthDbContext)
 {
     context = dayAndNigthDbContext;
 }
Beispiel #3
0
 public DrinkRepository(DayAndNigthDbContext dayAndNigthDbContext)
 {
     context = dayAndNigthDbContext;
 }
Beispiel #4
0
 public ShoppingCart(DayAndNigthDbContext dayAndNigthDbContext)
 {
     context = dayAndNigthDbContext;
 }