BROMO365-back/src/main/java/com/example/nto/service/EmployeeService.java

16 lines
409 B
Java

package com.example.nto.service;
import com.example.nto.dto.EmployeeDTO;
import com.example.nto.dto.RegisterDTO;
import com.example.nto.entity.Employee;
import org.springframework.stereotype.Service;
@Service
public interface EmployeeService {
public void updateLocalTime(Employee employee);
public Employee findEmployeeByUsername(String login);
EmployeeDTO createEmployee(RegisterDTO dto);
}