package com.example.cookbook.service; import com.example.cookbook.model.Recept; import java.sql.SQLException; import java.util.List; public interface ReceptService { List listAll() throws SQLException; Recept findById(Long id) throws SQLException; }