source: source/MovieZilla-master/src/main/java/com/example/demo/service/ReservationService.java@ fc7ec52

Last change on this file since fc7ec52 was fc7ec52, checked in by darkopopovski <darkopopovski39@…>, 22 months ago

all files

  • Property mode set to 100644
File size: 389 bytes
Line 
1package com.example.demo.service;
2
3import com.example.demo.model.Reservation.Reservations;
4
5import java.util.Optional;
6
7public 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.