source:
src/main/java/com/example/cookbook/service/KomentariService.java
Last change on this file was d4d8fb9, checked in by , 9 months ago | |
---|---|
|
|
File size: 333 bytes |
Rev | Line | |
---|---|---|
[aea04dd] | 1 | package com.example.cookbook.service; |
2 | ||
3 | import com.example.cookbook.model.Komentar; | |
4 | ||
5 | import java.sql.SQLException; | |
6 | import java.util.List; | |
7 | ||
8 | public interface KomentariService { | |
9 | ||
10 | List<Komentar> findAllById(Long recId) throws SQLException; | |
[d4d8fb9] | 11 | |
12 | void add(String telefon, Long id, Integer ocena, String komentar) throws SQLException; | |
[aea04dd] | 13 | } |
Note:
See TracBrowser
for help on using the repository browser.