내용

글번호 214
작성자 heojk
작성일 2016-11-16 10:14:33
제목 IEmpRepository.java
내용 package kr.co.javaspecialist.employees.model; import java.util.List; public interface IEmpRepository { List<EmpVO> getEmpList(); EmpVO getEmpDetails(int employeeId); }