forked from Olympic/NTO-2025-Backend-TeamTask
15 lines
489 B
Java
15 lines
489 B
Java
package com.example.nto.service;
|
|
import com.example.nto.entity.Employee;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* TODO: ДОРАБОТАТЬ в рамках задания
|
|
* =================================
|
|
* МОЖНО: Добавлять методы, аннотации, зависимости
|
|
* НЕЛЬЗЯ: Изменять название класса и пакета
|
|
*/
|
|
@Service
|
|
public interface EmployeeService {
|
|
Employee getEmployeeByCode(String code);
|
|
}
|