source: src/main/java/com/example/fooddeliverysystem/service/HasFoodService.java

Last change on this file was 8d11f8c, checked in by jovanmanchev <jovanmanchev3003@…>, 18 months ago

code added, trial 2

  • Property mode set to 100644
File size: 373 bytes
RevLine 
[8d11f8c]1package com.example.fooddeliverysystem.service;
2
3import com.example.fooddeliverysystem.model.OrderHasFood;
4import com.example.fooddeliverysystem.model.objects.FoodItemsWithQuantity;
5
6import java.util.List;
7
8public interface HasFoodService {
9 List<OrderHasFood> findAllFoodsInOrder(Long orderId);
10
11 List<FoodItemsWithQuantity> findAllFoodnamesInOrder(Long orderId);
12}
Note: See TracBrowser for help on using the repository browser.