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:
644 bytes
|
Line | |
---|
1 | package com.project.beautycenter.service;
|
---|
2 |
|
---|
3 |
|
---|
4 | import com.project.beautycenter.model.Klienti;
|
---|
5 | import com.project.beautycenter.model.Uslugi;
|
---|
6 |
|
---|
7 | import java.util.List;
|
---|
8 |
|
---|
9 | public interface UslugiService {
|
---|
10 | List<Uslugi> findAll();
|
---|
11 |
|
---|
12 | Uslugi findbyId(String id);
|
---|
13 |
|
---|
14 | Uslugi findbyDejnost(String dejnost);
|
---|
15 |
|
---|
16 | Uslugi create(String id, String dejnost, String cena, List<Integer> vraboteniId);
|
---|
17 |
|
---|
18 | Uslugi update(String id, String dejnost, String cena, List<Integer> vraboteniId);
|
---|
19 |
|
---|
20 | Uslugi delete(String id);
|
---|
21 |
|
---|
22 | void rate(Uslugi usluga, Integer vrednost, String komentar, Klienti klient);
|
---|
23 |
|
---|
24 | List<Uslugi> findAllById(List<String> uslugiIds);
|
---|
25 |
|
---|
26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.