source: src/main/java/com/example/cookbook/service/ReceptService.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: 271 bytes
Line 
1package com.example.cookbook.service;
2
3import com.example.cookbook.model.Recept;
4
5import java.sql.SQLException;
6import java.util.List;
7
8public interface ReceptService {
9
10 List<Recept> listAll() throws SQLException;
11
12 Recept findById(Long id) throws SQLException;
13}
Note: See TracBrowser for help on using the repository browser.