Some checks failed
Android Test / validate-and-test (pull_request) Has been cancelled
21 lines
637 B
Java
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);
|
|
}
|