16 lines
409 B
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);
|
|
}
|