Guest User

Untitled

a guest
Nov 22nd, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package dao;
  2.  
  3. import java.util.List;
  4.  
  5. import model.Employee;
  6.  
  7. public interface EmployeeDAO {
  8.  
  9. public void insertEmployee(Employee employee);
  10.  
  11. public Employee getEmployeeById(int id);
  12.  
  13. public List<Employee> getEmployees();
  14.  
  15. public void deleteEmployee(int id);
  16.  
  17. public void raiseSalary(int id, int raise);
  18. }
Add Comment
Please, Sign In to add comment