feat: Initial commit

This commit is contained in:
2026-02-23 16:23:42 +03:00
commit df9fa272ba
33 changed files with 829 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.example.nto.service;
import com.example.nto.controller.dto.EmployeeDto;
public interface EmployeeService {
EmployeeDto getByCode(String code);
void auth(String code);
}