Last change
on this file since 9eba1fb was 9eba1fb, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago |
reservation for projection started
|
-
Property mode
set to
100644
|
File size:
647 bytes
|
Line | |
---|
1 | package com.example.moviezone.service.Impl;
|
---|
2 |
|
---|
3 | import com.example.moviezone.repository.ProjectionIsPlayedInRoomRepository;
|
---|
4 | import com.example.moviezone.service.ProjectionIsPlayedInRoomService;
|
---|
5 | import org.springframework.stereotype.Service;
|
---|
6 |
|
---|
7 | @Service
|
---|
8 | public class ProjectionIsPlayedInRoomServiceImpl implements ProjectionIsPlayedInRoomService {
|
---|
9 | private final ProjectionIsPlayedInRoomRepository projectionIsPlayedInRoomRepository;
|
---|
10 |
|
---|
11 | public ProjectionIsPlayedInRoomServiceImpl(ProjectionIsPlayedInRoomRepository projectionIsPlayedInRoomRepository) {
|
---|
12 | this.projectionIsPlayedInRoomRepository = projectionIsPlayedInRoomRepository;
|
---|
13 | }
|
---|
14 |
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.