dot commit
Some checks failed
Android Test / validate-and-test (pull_request) Has been cancelled

This commit is contained in:
2025-12-11 21:01:26 +08:00
parent 83b3202ea2
commit 84372c5ad1
16 changed files with 323 additions and 3 deletions

View File

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