Last change
on this file was ed20c2c, checked in by HumaSejdini <humasejdini12@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
347 bytes
|
Line | |
---|
1 | package com.example.baza.service;
|
---|
2 |
|
---|
3 |
|
---|
4 |
|
---|
5 | import com.example.baza.model.Dobavuvac;
|
---|
6 |
|
---|
7 | import java.util.List;
|
---|
8 | import java.util.Optional;
|
---|
9 |
|
---|
10 | public interface DobavuvacService {
|
---|
11 | Optional<Dobavuvac> findById(Integer id);
|
---|
12 | List<Dobavuvac> findByImeDobabuvac(String imeDobabuvac);
|
---|
13 | Dobavuvac create(String imeDobabuvac);
|
---|
14 | void delete(Integer id);
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.