Rev | Line | |
---|
[f17f34f] | 1 | package com.example.moviezone.service;
|
---|
| 2 |
|
---|
[302b233] | 3 | import com.example.moviezone.model.Film;
|
---|
[f17f34f] | 4 | import com.example.moviezone.model.Projection;
|
---|
| 5 |
|
---|
[a554435] | 6 | import java.time.LocalDate;
|
---|
[1e7126f] | 7 | import java.time.LocalDateTime;
|
---|
[f17f34f] | 8 | import java.util.List;
|
---|
| 9 |
|
---|
| 10 | public interface ProjectionService {
|
---|
| 11 | List<Projection> findAllProjections();
|
---|
[5867520] | 12 | List<Projection> getProjectionsForFilms(int id);
|
---|
[1e7126f] | 13 | List<Projection> getProjectionsNow();
|
---|
[9eba1fb] | 14 | Projection findById(Integer id_projection);
|
---|
[1e7126f] | 15 | Projection save(LocalDateTime date_time_start, LocalDateTime date_time_end, String type_of_technology, Integer id_film, Integer id_room, Integer id_discount);
|
---|
[f17f34f] | 16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.