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

Last change on this file was a226bc3, checked in by Blazho <aleksandar.blazhevski@…>, 8 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
RevLine 
[cab1b7d]1package com.example.cookbook.service;
2
[a226bc3]3import com.example.cookbook.model.DostavaDTO;
[cab1b7d]4import com.example.cookbook.model.Naracka;
[ee27685]5import com.example.cookbook.model.Recept;
6import com.example.cookbook.model.Stavka;
[cab1b7d]7
8import java.sql.SQLException;
[ee27685]9import java.time.LocalDateTime;
[cab1b7d]10import java.util.List;
11
12public interface NarackiService {
13
14 List<Naracka> listAll() throws SQLException;
[ee27685]15
16 List<Stavka> findByTelAndVreme(String telefon, LocalDateTime vreme) throws SQLException;
[a226bc3]17
18 List<DostavaDTO> findDataForDostava(String telefon, LocalDateTime vreme) throws SQLException;
[cab1b7d]19}
Note: See TracBrowser for help on using the repository browser.