- 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/ProjectionService.java
r40935d3 r1e7126f 5 5 6 6 import java.time.LocalDate; 7 import java.time.LocalDateTime; 7 8 import java.util.List; 8 9 … … 10 11 List<Projection> findAllProjections(); 11 12 List<Projection> getProjectionsForFilms(int id); 13 List<Projection> getProjectionsNow(); 12 14 Projection findById(Integer id_projection); 13 Projection save(LocalDate date_time_start,LocalDate date_time_end, String type_of_technology, Integer id_film);15 Projection save(LocalDateTime date_time_start, LocalDateTime date_time_end, String type_of_technology, Integer id_film, Integer id_room, Integer id_discount); 14 16 }
Note:
See TracChangeset
for help on using the changeset viewer.