source: Git/src/main/java/com/wediscussmovies/project/service/ReplyService.java@ 7fafead

main
Last change on this file since 7fafead was 7fafead, checked in by Test <matonikolov77@…>, 2 years ago

Resolving models

  • Property mode set to 100644
File size: 262 bytes
Line 
1package com.wediscussmovies.project.service;
2
3import com.wediscussmovies.project.model.Reply;
4
5import java.util.Optional;
6
7public interface ReplyService {
8 public Reply save(Reply r);
9 public void delete(Reply r);
10 Optional<Reply> findById(Long id);
11
12}
Note: See TracBrowser for help on using the repository browser.