Last change
on this file since 850b344 was 850b344, checked in by Tamara Simikj <tamara.simic12@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
473 bytes
|
Line | |
---|
1 | package com.project.beautycenter.service;
|
---|
2 |
|
---|
3 | import com.project.beautycenter.model.Klienti;
|
---|
4 | import com.project.beautycenter.model.Users;
|
---|
5 |
|
---|
6 | import java.util.List;
|
---|
7 |
|
---|
8 | public interface KlientiService {
|
---|
9 |
|
---|
10 | List<Klienti> listAll();
|
---|
11 |
|
---|
12 | Klienti findById(Integer id);
|
---|
13 |
|
---|
14 | Klienti delete(Integer id);
|
---|
15 |
|
---|
16 | Klienti create(Users users, String ime, String prezime, String telBr, String email);
|
---|
17 |
|
---|
18 | Klienti update(Integer id, String ime, String prezime, String telBr, String email);
|
---|
19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.