Last change
on this file since bc39b15 was ed20c2c, checked in by HumaSejdini <humasejdini12@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
421 bytes
|
Line | |
---|
1 | package com.example.baza.service;
|
---|
2 |
|
---|
3 | import com.example.baza.model.Chlen2;
|
---|
4 | import com.example.baza.model.Kazna;
|
---|
5 | import com.example.baza.model.Pozajmica;
|
---|
6 |
|
---|
7 | import java.time.LocalDate;
|
---|
8 | import java.util.List;
|
---|
9 |
|
---|
10 | public interface KaznaService {
|
---|
11 | Kazna findById(Integer id);
|
---|
12 | List<Kazna> listAll();
|
---|
13 | Kazna create(LocalDate datum, Double cenaVoDenari, Pozajmica pozajmica, Chlen2 chlen);
|
---|
14 | Kazna deleteId (Integer id);
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.