Last change
on this file since 00fa72f was 90317ea, checked in by DenicaKj <dkorvezir@…>, 22 months ago |
Events and Event
|
-
Property mode
set to
100644
|
File size:
444 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 | import java.util.Optional;
|
---|
8 |
|
---|
9 | public interface EventService {
|
---|
10 | List<Event> findAllEvents();
|
---|
11 | Event save(LocalDate start_date,String theme,String duration,String repeating,String url);
|
---|
12 | List<Event> getEventsNow();
|
---|
13 | List<Event> getEventsFromCinema(int id);
|
---|
14 | Optional<Event> getEventById(Long id);
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.