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 | |
---|
1 | package com.example.fooddeliverysystem.service;
|
---|
2 |
|
---|
3 | import com.example.fooddeliverysystem.model.OrderHasFood;
|
---|
4 | import com.example.fooddeliverysystem.model.objects.FoodItemsWithQuantity;
|
---|
5 |
|
---|
6 | import java.util.List;
|
---|
7 |
|
---|
8 | public 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.