Last change
on this file since d09caa7 was 0fb69cc, checked in by DenicaKj <dkorvezir@…>, 22 months ago |
Adding Events To Home Page
|
-
Property mode
set to
100644
|
File size:
297 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,String url);
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.