source: src/main/java/com/example/moviezone/service/EventService.java@ 1b248e4

Last change on this file since 1b248e4 was f17f34f, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago

repository and service classes

  • Property mode set to 100644
File size: 175 bytes
Line 
1package com.example.moviezone.service;
2
3import com.example.moviezone.model.Event;
4
5import java.util.List;
6
7public interface EventService {
8 List<Event> findAllEvents();
9
10}
Note: See TracBrowser for help on using the repository browser.