Ignore:
Timestamp:
02/08/23 14:41:27 (22 months ago)
Author:
milamihajlovska <mila.mihajlovska01@…>
Branches:
master
Children:
2c7a732
Parents:
39a45e6 (diff), 90317ea (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of https://github.com/DenicaKj/MovieZone

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/example/moviezone/service/EventService.java

    r39a45e6 r632e3d8  
    55import java.time.LocalDate;
    66import java.util.List;
     7import java.util.Optional;
    78
    89public interface EventService {
    910    List<Event> findAllEvents();
    1011    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);
    1115}
Note: See TracChangeset for help on using the changeset viewer.