Some checks failed
Android Test / validate-and-test (pull_request) Has been cancelled
17 lines
473 B
Java
17 lines
473 B
Java
package com.example.nto.service;
|
|
|
|
import com.example.nto.entity.Employee;
|
|
|
|
import java.util.Optional;
|
|
|
|
/**
|
|
* TODO: ДОРАБОТАТЬ в рамках задания
|
|
* =================================
|
|
* МОЖНО: Добавлять методы, аннотации, зависимости
|
|
* НЕЛЬЗЯ: Изменять название класса и пакета
|
|
*/
|
|
public interface EmployeeService {
|
|
|
|
Optional<Employee> getEmployeeByCode(String code);
|
|
}
|