Line | |
---|
1 | package com.example.cookbook.service;
|
---|
2 |
|
---|
3 | import com.example.cookbook.model.DostavaDTO;
|
---|
4 | import com.example.cookbook.model.Naracka;
|
---|
5 | import com.example.cookbook.model.Recept;
|
---|
6 | import com.example.cookbook.model.Stavka;
|
---|
7 |
|
---|
8 | import java.sql.SQLException;
|
---|
9 | import java.time.LocalDateTime;
|
---|
10 | import java.util.List;
|
---|
11 |
|
---|
12 | public interface NarackiService {
|
---|
13 |
|
---|
14 | List<Naracka> listAll() throws SQLException;
|
---|
15 |
|
---|
16 | List<Stavka> findByTelAndVreme(String telefon, LocalDateTime vreme) throws SQLException;
|
---|
17 |
|
---|
18 | List<DostavaDTO> findDataForDostava(String telefon, LocalDateTime vreme) throws SQLException;
|
---|
19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.