Last change
on this file was 00fa72f, checked in by DenicaKj <dkorvezir@…>, 21 months ago |
Reservation Implemented
|
-
Property mode
set to
100644
|
File size:
333 bytes
|
Rev | Line | |
---|
[f17f34f] | 1 | package com.example.moviezone.service;
|
---|
| 2 |
|
---|
| 3 | import com.example.moviezone.model.Projection_Room;
|
---|
[00fa72f] | 4 | import org.springframework.data.jpa.repository.query.Procedure;
|
---|
[f17f34f] | 5 |
|
---|
| 6 | import java.util.List;
|
---|
| 7 |
|
---|
| 8 | public interface Projection_RoomService {
|
---|
| 9 | List<Projection_Room> findAllProjectionRooms();
|
---|
[00fa72f] | 10 |
|
---|
| 11 | List<Projection_Room> getRoomByProjection(int id);
|
---|
[f17f34f] | 12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.