package com.example.nto.service; import com.example.nto.entity.Booking; import com.example.nto.entity.Employee; import com.example.nto.entity.Place; import java.time.LocalDate; import java.util.List; /** * TODO: ДОРАБОТАТЬ в рамках задания * ================================= * МОЖНО: Добавлять методы, аннотации, зависимости * НЕЛЬЗЯ: Изменять название класса и пакета */ public interface BookingService { Booking getById(Long id); List getAll(); void save(LocalDate date, Place place, Employee employee); }