Last change
on this file since 533c366 was 448bd84, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago |
added listing workers
|
-
Property mode
set to
100644
|
File size:
378 bytes
|
Line | |
---|
1 | package com.example.moviezone.service;
|
---|
2 |
|
---|
3 | import com.example.moviezone.model.Film;
|
---|
4 |
|
---|
5 | import java.time.LocalDate;
|
---|
6 | import java.util.List;
|
---|
7 |
|
---|
8 | public interface FilmService {
|
---|
9 | List<Film> findAllFilms();
|
---|
10 | Film save(String name, Integer duration, String actors, String genre,
|
---|
11 | String age_category, String url, String director, LocalDate start_date,LocalDate end_date);
|
---|
12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.