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:
779 bytes
|
Line | |
---|
1 | package mk.ukim.finki.busngo.service;
|
---|
2 |
|
---|
3 | import mk.ukim.finki.busngo.model.entities.Kaznazaneregistriran;
|
---|
4 | import mk.ukim.finki.busngo.model.entities.Kaznazaregistriran;
|
---|
5 | import org.springframework.security.core.Authentication;
|
---|
6 | import org.springframework.web.bind.annotation.RequestParam;
|
---|
7 |
|
---|
8 | import java.util.List;
|
---|
9 |
|
---|
10 | public interface KaznaZaNeregistriranService {
|
---|
11 | List<Kaznazaneregistriran> findAll();
|
---|
12 | Kaznazaneregistriran findById(Long id);
|
---|
13 | Kaznazaneregistriran create(Long kontrolaId,
|
---|
14 | String dokument,
|
---|
15 | Double iznos,
|
---|
16 | String telefon,
|
---|
17 | String ime,
|
---|
18 | String adresa,
|
---|
19 | String email);
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.