Last change
on this file was fc7ec52, checked in by darkopopovski <darkopopovski39@…>, 2 years ago |
all files
|
-
Property mode
set to
100644
|
File size:
389 bytes
|
Line | |
---|
1 | package com.example.demo.service;
|
---|
2 |
|
---|
3 | import com.example.demo.model.Reservation.Reservations;
|
---|
4 |
|
---|
5 | import java.util.Optional;
|
---|
6 |
|
---|
7 | public interface ReservationService {
|
---|
8 | Optional<Reservations> save(Integer reservation_id, String reservation_end_date, Integer payment_type_id, Integer user_id, Integer seat_id, Integer auditorium_id, Integer projection_id);
|
---|
9 | Optional<Reservations> findAll();
|
---|
10 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.