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

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

code added, trial 2

  • Property mode set to 100644
File size: 373 bytes
Line 
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.