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

This commit is contained in:
Yurchik-gitter
2025-12-03 18:19:50 +03:00
parent 83b3202ea2
commit c9c12e2481
13 changed files with 297 additions and 81 deletions

View File

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