Complete backend functionality
Some checks failed
Android Test / validate-and-test (pull_request) Has been cancelled

This commit is contained in:
2025-12-11 20:15:53 +07:00
parent 83b3202ea2
commit cebc033f0f
17 changed files with 327 additions and 14 deletions

View File

@@ -1,5 +1,12 @@
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: ДОРАБОТАТЬ в рамках задания
* =================================
@@ -7,4 +14,7 @@ package com.example.nto.service;
* НЕЛЬЗЯ: Изменять название класса и пакета
*/
public interface BookingService {
Booking getById(Long id);
List<Booking> getAll();
void save(LocalDate date, Place place, Employee employee);
}