исправлено 0_о

This commit is contained in:
lynxwq2
2025-11-28 17:40:53 +03:00
parent 4a22c9d466
commit 94a8cddd51
5 changed files with 19 additions and 14 deletions

View File

@@ -14,7 +14,8 @@ import java.util.Optional;
public interface EmployeeService {
List<Employee> getAll();
Optional<Employee> getById(long id);
Optional<Employee> getByCode(String code);
boolean isIdValid(long id);
boolean isCodeValid(String code);
}