@Override
 public Client getClientById(Integer id) throws ServiceException {
   try {
     return clientDAO.getClientById(id);
   } catch (DaoException e) {
     throw new ServiceException(e.getMessage(), e);
   }
 }