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