source: src/main/java/com/example/baza/service/KaznaService.java@ ed20c2c

Last change on this file since ed20c2c was ed20c2c, checked in by HumaSejdini <humasejdini12@…>, 2 years ago

Initial commit

  • Property mode set to 100644
File size: 421 bytes
Line 
1package com.example.baza.service;
2
3import com.example.baza.model.Chlen2;
4import com.example.baza.model.Kazna;
5import com.example.baza.model.Pozajmica;
6
7import java.time.LocalDate;
8import java.util.List;
9
10public 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.