This commit is contained in:
lynxwq2
2025-11-27 17:15:08 +03:00
parent 5295d49a44
commit 18172e1731
11 changed files with 74 additions and 40 deletions

View File

@@ -3,6 +3,7 @@ package com.example.nto.service;
import com.example.nto.entity.Employee;
import java.util.List;
import java.util.Optional;
/**
* TODO: ДОРАБОТАТЬ в рамках задания
@@ -13,5 +14,5 @@ import java.util.List;
public interface EmployeeService {
List<Employee> getAll();
Employee getById(long id);
Optional<Employee> getById(long id);
}