WebDev
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* 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();
|
||||
}
|
Reference in New Issue
Block a user