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