source:
src/main/java/com/example/cookbook/service/SlikiService.java@
cab1b7d
Last change on this file since cab1b7d was 501396e, checked in by , 9 months ago | |
---|---|
|
|
File size: 236 bytes |
Line | |
---|---|
1 | package com.example.cookbook.service; |
2 | |
3 | import com.example.cookbook.model.Slika; |
4 | |
5 | import java.sql.SQLException; |
6 | import java.util.List; |
7 | |
8 | public interface SlikiService { |
9 | |
10 | List<Slika> findAllPicById(Long recId) throws SQLException; |
11 | |
12 | |
13 | } |
Note:
See TracBrowser
for help on using the repository browser.