Files
ASDV-WebDev/Semester 2/LabJuneauValidateUserInput_CalebFontenot/src/main/java/bl/EmployeeInterface.java
2023-09-27 13:31:02 -05:00

18 lines
419 B
Java

/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package bl;
import java.util.List;
/**
*
* @author caleb
*/
public interface EmployeeInterface {
boolean insertEmployee(Employee e);
boolean removeEmployee(Employee e);
List<Employee> getEmployees();
}