Last change
on this file since 11d7b36 was 00fa72f, checked in by DenicaKj <dkorvezir@…>, 21 months ago |
Reservation Implemented
|
-
Property mode
set to
100644
|
File size:
500 bytes
|
Line | |
---|
1 | package com.example.moviezone.service;
|
---|
2 |
|
---|
3 | import com.example.moviezone.model.Category;
|
---|
4 | import com.example.moviezone.model.Projection_Room;
|
---|
5 | import com.example.moviezone.model.Seat;
|
---|
6 |
|
---|
7 | import java.util.List;
|
---|
8 | import java.util.Optional;
|
---|
9 |
|
---|
10 | public interface SeatService {
|
---|
11 | List<Seat> findAllSeats();
|
---|
12 | List<Seat> findAllByProjection_Room(Projection_Room projection_room);
|
---|
13 | List<Seat> findAllByRoomAndCategory(Projection_Room projectionRoom, Category category);
|
---|
14 | Optional<Seat> getSeatById(int id);
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.