Last change
on this file since a8b6e6a was ef84238, checked in by DenicaKj <dkorvezir@…>, 21 months ago |
Interested in event
|
-
Property mode
set to
100644
|
File size:
538 bytes
|
Line | |
---|
1 | package com.example.moviezone.service;
|
---|
2 |
|
---|
3 | import ch.qos.logback.core.encoder.EchoEncoder;
|
---|
4 | import com.example.moviezone.model.Event;
|
---|
5 |
|
---|
6 | import java.time.LocalDate;
|
---|
7 | import java.util.List;
|
---|
8 | import java.util.Optional;
|
---|
9 |
|
---|
10 | public interface EventService {
|
---|
11 | List<Event> findAllEvents();
|
---|
12 | Event save(LocalDate start_date,String theme,String duration,String repeating,String url);
|
---|
13 | List<Event> getEventsNow();
|
---|
14 | List<Event> getEventsFromCinema(int id);
|
---|
15 | Optional<Event> getEventById(Long id);
|
---|
16 | List<Event> getEventsForCustomer(int id);
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.