source:
src/main/java/com/example/moviezone/service/CinemaService.java
Last change on this file was 5444409, checked in by , 21 months ago | |
---|---|
|
|
File size: 224 bytes |
Line | |
---|---|
1 | package com.example.moviezone.service; |
2 | |
3 | import com.example.moviezone.model.Cinema; |
4 | |
5 | import java.util.List; |
6 | |
7 | public interface CinemaService { |
8 | List<Cinema> findAllCinemas(); |
9 | Cinema findCinemaById(Integer id_cinema); |
10 | } |
Note:
See TracBrowser
for help on using the repository browser.