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
RevLine 
[738b31a]1package finki.paw5.service;
2
[6479fe1]3import finki.paw5.model.entities.Post;
[a762b3a]4import java.util.List;
5import java.util.Optional;
[738b31a]6
7public interface PostService {
[6479fe1]8
[468b7b6]9 void save (Post post);
[6479fe1]10
[a762b3a]11 List<Post> findAll();
12
13 Optional<Post> findById(Integer id);
[738b31a]14}
Note: See TracBrowser for help on using the repository browser.