source: src/main/java/com/example/moviezone/service/SeatService.java@ 00fa72f

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: 500 bytes
Line 
1package com.example.moviezone.service;
2
3import com.example.moviezone.model.Category;
4import com.example.moviezone.model.Projection_Room;
5import com.example.moviezone.model.Seat;
6
7import java.util.List;
8import java.util.Optional;
9
10public 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.