source: src/main/java/com/example/baza/service/ChovekService.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: 423 bytes
Line 
1package com.example.baza.service;
2
3
4import com.example.baza.model.Chovek2;
5
6import java.util.List;
7
8public interface ChovekService {
9 List<Chovek2> listAll();
10 Chovek2 findById(Integer id);
11 Chovek2 login(String username, String password);
12 Chovek2 create(String ime, String prezime, String email, String telBroj, String adresa, String embg, String username, String password);
13 Chovek2 delete(Integer id);
14}
Note: See TracBrowser for help on using the repository browser.