Last change
on this file was 501396e, checked in by Blazho <aleksandar.blazhevski@…>, 9 months ago |
added missing files
|
-
Property mode
set to
100644
|
File size:
271 bytes
|
Line | |
---|
1 | package com.example.cookbook.service;
|
---|
2 |
|
---|
3 | import com.example.cookbook.model.Recept;
|
---|
4 |
|
---|
5 | import java.sql.SQLException;
|
---|
6 | import java.util.List;
|
---|
7 |
|
---|
8 | public 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.