Last change
on this file was b3f2adb, checked in by Aleksandar Siljanoski <acewow3@…>, 14 months ago |
Adding project to repo
|
-
Property mode
set to
100644
|
File size:
456 bytes
|
Rev | Line | |
---|
[b3f2adb] | 1 | package com.example.eatys_app.service;
|
---|
| 2 |
|
---|
| 3 | import com.example.eatys_app.model.Meni;
|
---|
| 4 | import com.example.eatys_app.model.Obrok;
|
---|
| 5 |
|
---|
| 6 | import java.util.List;
|
---|
| 7 |
|
---|
| 8 | public interface ObrokService {
|
---|
| 9 |
|
---|
| 10 | List<Obrok> listAll();
|
---|
| 11 |
|
---|
| 12 | Obrok findById(Integer id);
|
---|
| 13 |
|
---|
| 14 | Obrok create(String ime,String opis, Integer meniId);
|
---|
| 15 |
|
---|
| 16 | Obrok update(Integer id, String ime,String opis, Integer meniId);
|
---|
| 17 |
|
---|
| 18 | Obrok delete(Integer id);
|
---|
| 19 |
|
---|
| 20 | List<Obrok> listObrociByMeni(Integer meniId);
|
---|
| 21 |
|
---|
| 22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.