package com.abc.service; import java.util.List; import com.abc.entities.Dept; import com.abc.entities.Employee; import com.abc.exceptions.AppException; public interface AdminService { Employee registerEmployee(Integer psno, String name, String pass, Dept dept) throws AppException; List getAllEmployees() throws AppException; Employee getEmployee(Integer psno) throws AppException; List getEmployeeInPages(int start, int pageSize) throws AppException; }