реализация get, но пока ещё с ошибками

This commit is contained in:
lynxwq2
2025-11-26 16:04:30 +03:00
parent 0ea199cd6b
commit 5295d49a44
5 changed files with 80 additions and 5 deletions

View File

@@ -1,5 +1,9 @@
package com.example.nto.service;
import com.example.nto.entity.Employee;
import java.util.List;
/**
* TODO: ДОРАБОТАТЬ в рамках задания
* =================================
@@ -7,4 +11,7 @@ package com.example.nto.service;
* НЕЛЬЗЯ: Изменять название класса и пакета
*/
public interface EmployeeService {
List<Employee> getAll();
Employee getById(long id);
}