Last change
on this file since e5fefbd was e5fefbd, checked in by Anita Terziska <63020646+Nit4e@…>, 2 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
346 bytes
|
Line | |
---|
1 | package com.example.medweb.service;
|
---|
2 |
|
---|
3 | import com.example.medweb.model.Pacient;
|
---|
4 | import com.example.medweb.model.Upat;
|
---|
5 |
|
---|
6 | import java.util.List;
|
---|
7 | import java.util.Optional;
|
---|
8 |
|
---|
9 | public interface UpatService {
|
---|
10 |
|
---|
11 | Optional<Upat> findById (Integer id);
|
---|
12 | List<Upat> findAllByPacient (Pacient pacient);
|
---|
13 | Optional<Upat> selectedUpat (Integer upat_id);
|
---|
14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.