Files
NTO-2025-Backend-TeamTask/src/main/java/com/example/nto/service/EmployeeService.java
Yurchik-gitter c9c12e2481
Some checks failed
Android Test / validate-and-test (pull_request) Has been cancelled
first commit
2025-12-03 18:19:50 +03:00

10 lines
188 B
Java

package com.example.nto.service;
import com.example.nto.entity.Employee;
import java.util.Optional;
public interface EmployeeService {
Optional<Employee> findByCode(String code);
}