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:
554 bytes
|
Line | |
---|
1 | package com.example.fooddeliverysystem.service;
|
---|
2 |
|
---|
3 | import com.example.fooddeliverysystem.exceptions.SalePlaceNotFoundException;
|
---|
4 | import com.example.fooddeliverysystem.model.Order;
|
---|
5 | import com.example.fooddeliverysystem.model.SalePlace;
|
---|
6 |
|
---|
7 | import java.util.List;
|
---|
8 |
|
---|
9 | public interface SalePlaceService {
|
---|
10 |
|
---|
11 | List<SalePlace> findAll();
|
---|
12 | SalePlace findSalePlaceServiceById(Long id) throws SalePlaceNotFoundException;
|
---|
13 |
|
---|
14 | List<Order> findAllCreatedOrders(String username) throws SalePlaceNotFoundException;
|
---|
15 | SalePlace findSalePlaceForUser(String username);
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.