Last change
on this file since 608fba87 was 1e7126f, checked in by DenicaKj <dkorvezir@…>, 15 months ago |
fix
|
-
Property mode
set to
100644
|
File size:
601 bytes
|
Line | |
---|
1 | package com.example.moviezone.service;
|
---|
2 |
|
---|
3 | import com.example.moviezone.model.Film;
|
---|
4 | import com.example.moviezone.model.Projection;
|
---|
5 |
|
---|
6 | import java.time.LocalDate;
|
---|
7 | import java.time.LocalDateTime;
|
---|
8 | import java.util.List;
|
---|
9 |
|
---|
10 | public interface ProjectionService {
|
---|
11 | List<Projection> findAllProjections();
|
---|
12 | List<Projection> getProjectionsForFilms(int id);
|
---|
13 | List<Projection> getProjectionsNow();
|
---|
14 | Projection findById(Integer id_projection);
|
---|
15 | Projection save(LocalDateTime date_time_start, LocalDateTime date_time_end, String type_of_technology, Integer id_film, Integer id_room, Integer id_discount);
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.