/**
  * Gets the currency identified by the specified currencyId
  *
  * @author Coni
  * @param currencyId
  * @return
  * @throws BusinessException
  */
 public Currency getAll(int currencyId) throws BusinessException {
   logger.debug("getAll - START");
   Currency currency = null;
   try {
     currency = currencyDao.getAll(currencyId);
   } catch (Exception e) {
     throw new BusinessException(ICodeException.CURRENCY_GET_ALL, e);
   }
   logger.debug("getAll - END");
   return currency;
 }