Esempio n. 1
0
 public Integer getFactVacationsCountByPeriod(Employee employee, Date beginDate) {
   return vacationDAO.getVacationsCountByPeriod(employee, beginDate, true);
 }
Esempio n. 2
0
 public Integer getPlannedVacationsCountByPeriod(Employee employee, Date beginDate) {
   return vacationDAO.getVacationsCountByPeriod(employee, beginDate, false);
 }