source: src/main/java/com/example/cookbook/service/KorisniciService.java@ d4d8fb9

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

Posetitelot komentira i dava ocena za recept(https://develop.finki.ukim.mk/projects/cbdb/wiki/useCase11)

  • Property mode set to 100644
File size: 381 bytes
Line 
1package com.example.cookbook.service;
2
3import com.example.cookbook.model.Komentar;
4import com.example.cookbook.model.Korisnik;
5import com.example.cookbook.model.TipKorisnik;
6
7import java.sql.SQLException;
8import java.time.LocalDateTime;
9import java.util.List;
10
11public 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.