public IEnumerable <OrderFood> GetFoodOrders()
 {
     return(_repository.GetAllFoodOrders());
 }
Beispiel #2
0
 public IEnumerable <OrderFood> FoodOrders()
 {
     return(_repository.GetAllFoodOrders().Where(q => q.CustomerEmail == _email));
 }