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