source: src/main/java/com/example/baza/service/BibliotekarService.java@ bc39b15

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: 292 bytes
Line 
1package com.example.baza.service;
2
3
4import com.example.baza.model.Bibliotekar2;
5
6import java.util.List;
7
8public interface BibliotekarService {
9 List<Bibliotekar2> findAll();
10 List<Bibliotekar2> findByIdNaBibliotekar(Integer idNaBibliotekar);
11 void delete(Integer idNaBibliotekar);
12}
Note: See TracBrowser for help on using the repository browser.