Last change
on this file was ed20c2c, checked in by HumaSejdini <humasejdini12@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
423 bytes
|
Line | |
---|
1 | package com.example.baza.service;
|
---|
2 |
|
---|
3 |
|
---|
4 | import com.example.baza.model.Chovek2;
|
---|
5 |
|
---|
6 | import java.util.List;
|
---|
7 |
|
---|
8 | public 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.