package hello.model.dao; import hello.model.Employee; import java.util.List; public interface EmployeeDao { List getAllEmployees(); }