source:
src/main/java/com/example/eatys_app/service/TipService.java@
b3f2adb
Last change on this file since b3f2adb was b3f2adb, checked in by , 14 months ago | |
---|---|
|
|
File size: 225 bytes |
Line | |
---|---|
1 | package com.example.eatys_app.service; |
2 | |
3 | |
4 | import com.example.eatys_app.model.Tip; |
5 | |
6 | import java.util.List; |
7 | |
8 | public interface TipService { |
9 | |
10 | Tip findById(Integer id); |
11 | |
12 | List<Tip> listAll(); |
13 | |
14 | Tip create(String ime); |
15 | |
16 | } |
Note:
See TracBrowser
for help on using the repository browser.