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:
462 bytes
|
Line | |
---|
1 | package com.project.beautycenter.service;
|
---|
2 |
|
---|
3 | import com.project.beautycenter.model.Uslugi;
|
---|
4 | import com.project.beautycenter.model.Vraboteni;
|
---|
5 | import com.project.beautycenter.model.VraboteniUslugi;
|
---|
6 |
|
---|
7 | import java.util.List;
|
---|
8 |
|
---|
9 | public interface VraboteniUslugiService {
|
---|
10 | List<VraboteniUslugi> listAll();
|
---|
11 |
|
---|
12 | List<VraboteniUslugi> listByUsluga(Uslugi u);
|
---|
13 |
|
---|
14 | List<VraboteniUslugi> deletebyUsluga(String id);
|
---|
15 |
|
---|
16 | List<Vraboteni> getVraboteniByUsluga(Uslugi usluga);
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.