source:
src/main/java/com/example/cookbook/service/KorisniciService.java
Last change on this file was d4d8fb9, checked in by , 9 months ago | |
---|---|
|
|
File size: 381 bytes |
Line | |
---|---|
1 | package com.example.cookbook.service; |
2 | |
3 | import com.example.cookbook.model.Komentar; |
4 | import com.example.cookbook.model.Korisnik; |
5 | import com.example.cookbook.model.TipKorisnik; |
6 | |
7 | import java.sql.SQLException; |
8 | import java.time.LocalDateTime; |
9 | import java.util.List; |
10 | |
11 | public interface KorisniciService { |
12 | |
13 | |
14 | List<Korisnik> findAllByRole(TipKorisnik posetitel) throws SQLException; |
15 | |
16 | |
17 | |
18 | } |
Note:
See TracBrowser
for help on using the repository browser.