This commit is contained in:
Bhumi Shah
2025-12-05 20:31:13 +03:00
parent a6954c2013
commit af09df8047
18 changed files with 458 additions and 33 deletions

View File

@@ -1,4 +1,10 @@
package com.example.nto.service;
import com.example.nto.entity.Booking;
import com.example.nto.entity.Employee;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Map;
/**
* TODO: ДОРАБОТАТЬ в рамках задания
@@ -6,5 +12,7 @@ package com.example.nto.service;
* МОЖНО: Добавлять методы, аннотации, зависимости
* НЕЛЬЗЯ: Изменять название класса и пакета
*/
@Service
public interface EmployeeService {
Employee getEmployeeWithBookings(String code);
}