Last change
on this file since 608fefef was 302b233, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago |
home controller added mappings for add new film, event and projection
|
-
Property mode
set to
100644
|
File size:
286 bytes
|
Line | |
---|
1 | package com.example.moviezone.service;
|
---|
2 |
|
---|
3 | import com.example.moviezone.model.Event;
|
---|
4 |
|
---|
5 | import java.time.LocalDate;
|
---|
6 | import java.util.List;
|
---|
7 |
|
---|
8 | public interface EventService {
|
---|
9 | List<Event> findAllEvents();
|
---|
10 | Event save(LocalDate start_date,String theme,String duration,String repeating);
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.