source:
src/main/java/com/example/cookbook/service/SostojkiService.java@
cab1b7d
Last change on this file since cab1b7d was 501396e, checked in by , 9 months ago | |
---|---|
|
|
File size: 238 bytes |
Line | |
---|---|
1 | package com.example.cookbook.service; |
2 | |
3 | import com.example.cookbook.model.Sostojka; |
4 | |
5 | import java.sql.SQLException; |
6 | import java.util.List; |
7 | |
8 | public interface SostojkiService { |
9 | |
10 | List<Sostojka> findAllById(Long rId) throws SQLException; |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.