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