- Timestamp:
- 08/24/23 02:28:14 (15 months ago)
- Branches:
- master
- Children:
- bcb4acc
- Parents:
- 40935d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/service/SeatService.java
r40935d3 r1e7126f 2 2 3 3 import com.example.moviezone.model.Category; 4 import com.example.moviezone.model.Projection; 4 5 import com.example.moviezone.model.Projection_Room; 5 6 import com.example.moviezone.model.Seat; … … 11 12 List<Seat> findAllSeats(); 12 13 List<Seat> findAllByProjection_Room(Projection_Room projection_room); 13 List<Seat> findAllByRoomAndCategory(Projection _Room projectionRoom, Category category);14 List<Seat> findAllByRoomAndCategory(Projection projection, Projection_Room projectionRoom, Category category); 14 15 Optional<Seat> getSeatById(int id); 15 16 }
Note:
See TracChangeset
for help on using the changeset viewer.