public List<Vacation> findVacations( List<Employee> employees, Date beginDate, Date endDate, DictionaryItem typeId) { return vacationDAO.findVacations(employees, beginDate, endDate, typeId); }
public List<Vacation> findVacations( Integer employeeId, Date beginDate, Date endDate, DictionaryItem typeId) { return vacationDAO.findVacations(employeeId, beginDate, endDate, typeId); }