source: Git/src/main/java/com/wediscussmovies/project/service/GenreService.java@ 3ded84d

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

Model-database resolved bugs for mapping

  • Property mode set to 100644
File size: 408 bytes
Line 
1package com.wediscussmovies.project.service;
2
3import com.wediscussmovies.project.model.*;
4import org.springframework.stereotype.Service;
5
6import java.util.List;
7import java.util.Optional;
8
9@Service
10public interface GenreService {
11 public List<Genre> findAll();
12 public Optional<Genre> findById(Integer id);
13 public List<Genre> findAllByType(String genre);
14 public Genre save(String genreName);
15}
Note: See TracBrowser for help on using the repository browser.