package com.example.cookbook.service; import com.example.cookbook.model.Komentar; import com.example.cookbook.model.Korisnik; import com.example.cookbook.model.TipKorisnik; import java.sql.SQLException; import java.time.LocalDateTime; import java.util.List; public interface KorisniciService { List findAllByRole(TipKorisnik posetitel) throws SQLException; }