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:
628 bytes
|
Line | |
---|
1 | package com.example.eatys_app.service;
|
---|
2 |
|
---|
3 | import com.example.eatys_app.model.Cena;
|
---|
4 | import com.example.eatys_app.model.CenaId;
|
---|
5 | import com.example.eatys_app.model.Obrok;
|
---|
6 |
|
---|
7 | import java.util.Date;
|
---|
8 | import java.util.List;
|
---|
9 |
|
---|
10 | public interface CenaService {
|
---|
11 |
|
---|
12 | Cena findbyUniqueId(Integer uid);
|
---|
13 |
|
---|
14 | List<Cena> listAll();
|
---|
15 |
|
---|
16 | Obrok findById(Integer id);
|
---|
17 |
|
---|
18 | Cena create(Integer cenaId,Integer obrokId, Integer cenaIznos, Date cenaVaziOd, Date cenaVaziDo);
|
---|
19 |
|
---|
20 | Cena update(Integer id, Integer obrokId, Integer cenaIznos, Date cenaVaziOd, Date cenaVaziDo);
|
---|
21 |
|
---|
22 | Cena delete(Integer id);
|
---|
23 |
|
---|
24 | List<Cena> listCeniByObrok(Integer meniId);
|
---|
25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.