package com.example.cookbook.service; import com.example.cookbook.model.DostavaDTO; import com.example.cookbook.model.Naracka; import com.example.cookbook.model.Recept; import com.example.cookbook.model.Stavka; import java.sql.SQLException; import java.time.LocalDateTime; import java.util.List; public interface NarackiService { List listAll() throws SQLException; List findByTelAndVreme(String telefon, LocalDateTime vreme) throws SQLException; List findDataForDostava(String telefon, LocalDateTime vreme) throws SQLException; }