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