source: Git/src/main/java/com/wediscussmovies/project/service/MovieService.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: 385 bytes
Line 
1package com.wediscussmovies.project.service;
2
3import com.wediscussmovies.project.model.Movie;
4
5import java.util.List;
6import java.util.Optional;
7
8public interface MovieService {
9 public List<Movie> listAll();
10 public List<Movie> searchByTitle(String title);
11 public Optional<Movie> findById(Long id);
12 public Movie save(Movie movie);
13 public void deleteById(Long id);
14}
Note: See TracBrowser for help on using the repository browser.