source: src/main/java/com/example/cookbook/service/NarackiService.java@ a226bc3

Last change on this file since a226bc3 was a226bc3, checked in by Blazho <aleksandar.blazhevski@…>, 5 months ago

Vraboteniot ja planira dostavata na narackata(https://develop.finki.ukim.mk/projects/cbdb/wiki/useCase10)

  • Property mode set to 100644
File size: 578 bytes
Line 
1package com.example.cookbook.service;
2
3import com.example.cookbook.model.DostavaDTO;
4import com.example.cookbook.model.Naracka;
5import com.example.cookbook.model.Recept;
6import com.example.cookbook.model.Stavka;
7
8import java.sql.SQLException;
9import java.time.LocalDateTime;
10import java.util.List;
11
12public 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.