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:
346 bytes
|
Rev | Line | |
---|
[b3f2adb] | 1 | package com.example.eatys_app.service;
|
---|
| 2 |
|
---|
| 3 | import com.example.eatys_app.model.Meni;
|
---|
| 4 |
|
---|
| 5 | import java.util.List;
|
---|
| 6 |
|
---|
| 7 | public interface MeniService {
|
---|
| 8 |
|
---|
| 9 | List<Meni> listAll();
|
---|
| 10 |
|
---|
| 11 | Meni findById(Integer id);
|
---|
| 12 |
|
---|
| 13 | Meni create(Integer tipId, Integer restoranId);
|
---|
| 14 |
|
---|
| 15 | Meni update(Integer id, Integer tipId, Integer restoranId);
|
---|
| 16 |
|
---|
| 17 | Meni delete(Integer id);
|
---|
| 18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.