Last change
on this file was 850b344, checked in by Tamara Simikj <tamara.simic12@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
549 bytes
|
Line | |
---|
1 | package com.project.beautycenter.service;
|
---|
2 |
|
---|
3 |
|
---|
4 | import com.project.beautycenter.model.Klienti;
|
---|
5 | import com.project.beautycenter.model.Ocena;
|
---|
6 | import com.project.beautycenter.model.Rezervacija;
|
---|
7 | import com.project.beautycenter.model.Uslugi;
|
---|
8 |
|
---|
9 | import java.util.List;
|
---|
10 |
|
---|
11 | public interface OcenaService {
|
---|
12 | List<Ocena> listAll();
|
---|
13 |
|
---|
14 | Ocena findbyId(Integer id);
|
---|
15 |
|
---|
16 | Ocena delete(Integer id);
|
---|
17 |
|
---|
18 | void rateWithAppointment(Rezervacija brRez, List<Uslugi> uslugi, Integer vrednost, String komentar, Klienti klient);
|
---|
19 |
|
---|
20 | List<Ocena> listAllWithBrRezNotNull();
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.