Last change
on this file since 608fefef was 1b248e4, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago |
service impl changes
|
-
Property mode
set to
100644
|
File size:
622 bytes
|
Line | |
---|
1 | package com.example.moviezone.service.Impl;
|
---|
2 |
|
---|
3 | import com.example.moviezone.model.Cinema;
|
---|
4 | import com.example.moviezone.repository.CinemaRepository;
|
---|
5 | import com.example.moviezone.service.CinemaService;
|
---|
6 | import org.springframework.stereotype.Service;
|
---|
7 |
|
---|
8 | import java.util.List;
|
---|
9 |
|
---|
10 | @Service
|
---|
11 | public class CinemaServiceImpl implements CinemaService {
|
---|
12 | private final CinemaRepository cinemaRepository;
|
---|
13 |
|
---|
14 | public CinemaServiceImpl(CinemaRepository cinemaRepository) {
|
---|
15 | this.cinemaRepository = cinemaRepository;
|
---|
16 | }
|
---|
17 |
|
---|
18 | @Override
|
---|
19 | public List<Cinema> findAllCinemas() {
|
---|
20 | return cinemaRepository.findAll();
|
---|
21 | }
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.