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