source: Prototype Application/Paw5/src/main/java/finki/paw5/service/AdopterService.java

main
Last change on this file was 7aa3382, checked in by SazdovaEkaterina <sazdovaekaterina@…>, 16 months ago

add approve functionality

  • Property mode set to 100644
File size: 245 bytes
Line 
1package finki.paw5.service;
2
3import finki.paw5.model.entities.Adopter;
4
5import java.util.List;
6
7public interface AdopterService {
8 List<Adopter> findAllThatNeedApproval();
9
10 Adopter findById(Integer id);
11
12 void save(Adopter adopter);
13}
Note: See TracBrowser for help on using the repository browser.