source:
src/main/java/com/example/eatys_app/service/TipService.java
Last change on this file was b3f2adb, checked in by , 14 months ago | |
---|---|
|
|
File size: 225 bytes |
Rev | Line | |
---|---|---|
[b3f2adb] | 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.