| 123456789101112131415161718192021222324 |
- package pl.sudra.service;
- import pl.sudra.domain.Reservation;
- import java.sql.Date;
- import java.util.List;
- public interface ReservationService {
- void addReservation(Reservation reservation);
- void editReservation(Reservation reservation);
- List<Reservation> getReservations();
- void removeReservation(long id);
- Reservation getReservation(long id);
- void generateReservations(int n);
- List<Reservation> findReservations(long boat_id, Date date);
- Reservation findById(long id);
- }
|