source:
src/main/java/com/example/moviezone/service/ProjectionIsPlayedInRoomService.java
Last change on this file was 64ee7f4, checked in by , 22 months ago | |
---|---|
|
|
File size: 333 bytes |
Line | |
---|---|
1 | package com.example.moviezone.service; |
2 | |
3 | import com.example.moviezone.model.Film; |
4 | import com.example.moviezone.model.manytomany.ProjectionIsPlayedInRoom; |
5 | |
6 | import java.util.List; |
7 | import java.util.Optional; |
8 | |
9 | public interface ProjectionIsPlayedInRoomService { |
10 | List<ProjectionIsPlayedInRoom> getProjectionPlayedInRoom(Integer id); |
11 | |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.