/**
  * obtener moneda por Id
  *
  * @param id
  * @return Moneda
  * @throws DAOException
  */
 public MaterialDto obtenerPorId(Long id) throws DAOException {
   return springHibernateDao.obtenerDtoPorId(MaterialDto.class, id);
 }
 public ProductoDto obtenerParametro(Long id) throws DAOException {
   return springHibernateDao.obtenerDtoPorId(ProductoDto.class, id);
 }
 public OrganizacionDto obtenerPorId(Long id) throws DAOException {
   return springHibernateDao.obtenerDtoPorId(OrganizacionDto.class, id);
 }
 /**
  * Metodo para obtener un catalogo por su ID
  *
  * @param id ID del catalogo
  * @return Catalogo
  * @throws DAOException
  */
 public CategoriaPecDto obtenerPorId(Long id) throws DAOException {
   return springHibernateDao.obtenerDtoPorId(CategoriaPecDto.class, id);
 }