source: src/main/java/com/example/moviezone/service/SeatService.java@ 1e7126f

Last change on this file since 1e7126f was 1e7126f, checked in by DenicaKj <dkorvezir@…>, 15 months ago

fix

  • Property mode set to 100644
File size: 570 bytes
Line 
1package com.example.moviezone.service;
2
3import com.example.moviezone.model.Category;
4import com.example.moviezone.model.Projection;
5import com.example.moviezone.model.Projection_Room;
6import com.example.moviezone.model.Seat;
7
8import java.util.List;
9import java.util.Optional;
10
11public interface SeatService {
12 List<Seat> findAllSeats();
13 List<Seat> findAllByProjection_Room(Projection_Room projection_room);
14 List<Seat> findAllByRoomAndCategory(Projection projection, Projection_Room projectionRoom, Category category);
15 Optional<Seat> getSeatById(int id);
16}
Note: See TracBrowser for help on using the repository browser.