- Timestamp:
- 02/09/23 14:06:45 (21 months ago)
- Branches:
- master
- Children:
- 6a9006d, a9ffccd
- Parents:
- 0ba5d1a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/service/SeatService.java
r0ba5d1a r00fa72f 1 1 package com.example.moviezone.service; 2 2 3 import com.example.moviezone.model.Category; 3 4 import com.example.moviezone.model.Projection_Room; 4 5 import com.example.moviezone.model.Seat; 5 6 6 7 import java.util.List; 8 import java.util.Optional; 7 9 8 10 public interface SeatService { 9 11 List<Seat> findAllSeats(); 10 12 List<Seat> findAllByProjection_Room(Projection_Room projection_room); 13 List<Seat> findAllByRoomAndCategory(Projection_Room projectionRoom, Category category); 14 Optional<Seat> getSeatById(int id); 11 15 }
Note:
See TracChangeset
for help on using the changeset viewer.