source: src/main/java/com/example/cookbook/service/SostojkiService.java@ 501396e

Last change on this file since 501396e was 501396e, checked in by Blazho <aleksandar.blazhevski@…>, 5 months ago

added missing files

  • Property mode set to 100644
File size: 238 bytes
Line 
1package com.example.cookbook.service;
2
3import com.example.cookbook.model.Sostojka;
4
5import java.sql.SQLException;
6import java.util.List;
7
8public interface SostojkiService {
9
10 List<Sostojka> findAllById(Long rId) throws SQLException;
11}
Note: See TracBrowser for help on using the repository browser.