- Timestamp:
- 02/08/23 14:41:27 (22 months ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/service/EventService.java
r39a45e6 r632e3d8 5 5 import java.time.LocalDate; 6 6 import java.util.List; 7 import java.util.Optional; 7 8 8 9 public interface EventService { 9 10 List<Event> findAllEvents(); 10 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); 11 15 }
Note:
See TracChangeset
for help on using the changeset viewer.