package com.example.cookbook.service; import com.example.cookbook.model.Sostojka; import java.sql.SQLException; import java.util.List; public interface SostojkiService { List findAllById(Long rId) throws SQLException; }