Exemplo n.º 1
0
 public OrdersRepo(RestaurantContext context)
 {
     this.context = context;
     _ordersList  = context.Orders.ToList();
 }
 public CustomerRepo(RestaurantContext context)
 {
     this.context = context;
 }
Exemplo n.º 3
0
 public DishesRepo(RestaurantContext context)
 {
     this.context = context;
 }
 public MainCourseRepo(RestaurantContext context)
 {
     this.context = context;
 }
Exemplo n.º 5
0
 public StarterRepo(RestaurantContext context)
 {
     this.context = context;
 }