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

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

Added order items page

  • Property mode set to 100644
File size: 433 bytes
Line 
1package com.example.cookbook.service;
2
3import com.example.cookbook.model.Naracka;
4import com.example.cookbook.model.Recept;
5import com.example.cookbook.model.Stavka;
6
7import java.sql.SQLException;
8import java.time.LocalDateTime;
9import java.util.List;
10
11public interface NarackiService {
12
13 List<Naracka> listAll() throws SQLException;
14
15 List<Stavka> findByTelAndVreme(String telefon, LocalDateTime vreme) throws SQLException;
16}
Note: See TracBrowser for help on using the repository browser.