Files
NTO-2025-Backend-TeamTask/src/main/java/com/example/nto/service/BookingService.java
dmitrii-kochkaev cebc033f0f
Some checks failed
Android Test / validate-and-test (pull_request) Has been cancelled
Complete backend functionality
2025-12-11 20:15:53 +07:00

21 lines
637 B
Java

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<Booking> getAll();
void save(LocalDate date, Place place, Employee employee);
}