package com.abc.dao; import java.util.List; import com.abc.entities.Employee; import com.abc.exceptions.AppException; public interface AdminDAO { Employee create(Employee emp) throws AppException; Employee get(Integer psno) throws AppException; void save(Employee emp) throws AppException; void delete(Employee emp) throws AppException; List list() throws AppException; List list(int firstResult, int maxResults) throws AppException; }