source: src/main/java/com/example/moviezone/service/Impl/EventServiceImpl.java@ 11dea8f

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

service impl classes

  • Property mode set to 100644
File size: 359 bytes
Line 
1package com.example.moviezone.service.Impl;
2
3import com.example.moviezone.model.Event;
4import com.example.moviezone.service.EventService;
5import org.springframework.stereotype.Service;
6
7import java.util.List;
8
9@Service
10public class EventServiceImpl implements EventService {
11 @Override
12 public List<Event> findAllEvents() {
13 return null;
14 }
15}
Note: See TracBrowser for help on using the repository browser.