18 lines
419 B
Java
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();
|
|
}
|