- 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/repository/SeatRepository.java
r0ba5d1a r00fa72f 1 1 package com.example.moviezone.repository; 2 2 3 import com.example.moviezone.model.Category; 4 import com.example.moviezone.model.Projection; 3 5 import com.example.moviezone.model.Projection_Room; 4 6 import com.example.moviezone.model.Seat; … … 11 13 public interface SeatRepository extends JpaRepository<Seat,Integer> { 12 14 List<Seat> findAllByProjection(Projection_Room projection); 15 List<Seat> findAllByCategoryAndProjection(Category category, Projection_Room projectionRoom); 13 16 }
Note:
See TracChangeset
for help on using the changeset viewer.