コード例 #1
0
ファイル: VacationService.java プロジェクト: itru/timesheet
 public List<Vacation> findVacations(
     List<Employee> employees, Date beginDate, Date endDate, DictionaryItem typeId) {
   return vacationDAO.findVacations(employees, beginDate, endDate, typeId);
 }
コード例 #2
0
ファイル: VacationService.java プロジェクト: itru/timesheet
 public List<Vacation> findVacations(
     Integer employeeId, Date beginDate, Date endDate, DictionaryItem typeId) {
   return vacationDAO.findVacations(employeeId, beginDate, endDate, typeId);
 }