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:
540 bytes
|
Line | |
---|
1 | package com.project.beautycenter.service;
|
---|
2 |
|
---|
3 |
|
---|
4 | import com.project.beautycenter.model.Users;
|
---|
5 | import com.project.beautycenter.model.Vraboteni;
|
---|
6 |
|
---|
7 | import java.time.Instant;
|
---|
8 | import java.util.List;
|
---|
9 |
|
---|
10 | public interface VraboteniService {
|
---|
11 | List<Vraboteni> findAll();
|
---|
12 |
|
---|
13 | Vraboteni findbyId(Integer id);
|
---|
14 |
|
---|
15 | Vraboteni findVrabotenByUserId(Integer id);
|
---|
16 |
|
---|
17 | Vraboteni create(Users users, String ime, String middleName, String prezime, String telBr, String email,
|
---|
18 | Integer rabIskustvo, Instant rabotiOd, String beautyCenterId);
|
---|
19 |
|
---|
20 |
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.