source: Prototype Application/Paw5/src/main/java/finki/paw5/service/PostService.java@ eac569a

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

merge main into adopting-a-pet

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