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:
510 bytes
|
Rev | Line | |
---|
[850b344] | 1 | package com.project.beautycenter.service;
|
---|
| 2 |
|
---|
| 3 | import com.project.beautycenter.model.*;
|
---|
| 4 |
|
---|
| 5 | import java.util.List;
|
---|
| 6 |
|
---|
| 7 | public interface RezervacijaService {
|
---|
| 8 | List<Rezervacija> listAll();
|
---|
| 9 |
|
---|
| 10 | Rezervacija findbyId(Integer id);
|
---|
| 11 |
|
---|
| 12 | Rezervacija create(Klienti klient, Termini termin, Uplata uplata);
|
---|
| 13 |
|
---|
| 14 | Rezervacija create(Integer klientId, Integer terminId, List<Uslugi> uslugi);
|
---|
| 15 |
|
---|
| 16 | Rezervacija update(Integer id, List<String> uslugiIds, Integer klientId, Integer terminId);
|
---|
| 17 |
|
---|
| 18 | Rezervacija delete(Integer id);
|
---|
| 19 |
|
---|
| 20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.