Last change
on this file was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 3 months ago |
split group project and individual project into two separate folders
|
-
Property mode
set to
100644
|
File size:
318 bytes
|
Line | |
---|
1 | package mk.ukim.finki.busngo.service;
|
---|
2 |
|
---|
3 | import mk.ukim.finki.busngo.model.entities.Kontroli;
|
---|
4 |
|
---|
5 | import java.util.List;
|
---|
6 |
|
---|
7 | public interface KontrolaService {
|
---|
8 | List<Kontroli> findAll();
|
---|
9 | Kontroli create(Long inlId, String email);
|
---|
10 |
|
---|
11 | Kontroli findById(Long kontrolaId);
|
---|
12 |
|
---|
13 | List<Kontroli> findAllByInl(Long inlId);
|
---|
14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.