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