public Vacation getVacationWithoutPlanned(Employee employee, Date date) { return vacationDAO.getVacationWithoutPlanned(employee, date); }
@Transactional public Boolean isDayVacationWithoutPlanned(Employee employee, Date date) { return vacationDAO.getVacationWithoutPlanned(employee, date) != null ? true : false; }