source: src/main/java/com/example/moviezone/service/EventService.java@ 448bd84

Last change on this file since 448bd84 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 
1package com.example.moviezone.service;
2
3import com.example.moviezone.model.Event;
4
5import java.time.LocalDate;
6import java.util.List;
7
8public 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.