package com.example.cookbook.service; import com.example.cookbook.model.Komentar; import java.sql.SQLException; import java.util.List; public interface KomentariService { List findAllById(Long recId) throws SQLException; void add(String telefon, Long id, Integer ocena, String komentar) throws SQLException; }