source: src/main/java/com/example/moviezone/service/ProjectionIsPlayedInRoomService.java@ 5867520

Last change on this file since 5867520 was 64ee7f4, checked in by DenicaKj <dkorvezir@…>, 22 months ago

Fixes

  • Property mode set to 100644
File size: 333 bytes
Line 
1package com.example.moviezone.service;
2
3import com.example.moviezone.model.Film;
4import com.example.moviezone.model.manytomany.ProjectionIsPlayedInRoom;
5
6import java.util.List;
7import java.util.Optional;
8
9public interface ProjectionIsPlayedInRoomService {
10 List<ProjectionIsPlayedInRoom> getProjectionPlayedInRoom(Integer id);
11
12}
Note: See TracBrowser for help on using the repository browser.