- Timestamp:
- 02/06/23 03:59:41 (22 months ago)
- Branches:
- master
- Children:
- f8ef9bd
- Parents:
- 448bd84
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/service/FilmService.java
r448bd84 reb5426c 5 5 import java.time.LocalDate; 6 6 import java.util.List; 7 import java.util.Optional; 7 8 8 9 public interface FilmService { … … 10 11 Film save(String name, Integer duration, String actors, String genre, 11 12 String age_category, String url, String director, LocalDate start_date,LocalDate end_date); 13 Optional<Film> getFilmById(Long id); 12 14 }
Note:
See TracChangeset
for help on using the changeset viewer.