/**
   * AUTOR Y FECHA CREACION: JCHAVEZ / 21-08-2013 OBTENER FILAS DESCUENTO TERCEROS (ESTADO DE CUENTA
   * - TAB TERCEROS)
   */
  public List<Descuento> getListaFilasPorPeriodoModalidadYDni(
      Integer intPeriodo, Integer intParaModalidadCod, String strLibEle) throws BusinessException {
    List<Descuento> lista = null;
    try {
      HashMap<String, Object> mapa = new HashMap<String, Object>();
      mapa.put("intPeriodo", intPeriodo);
      mapa.put("intParaModalidadCod", intParaModalidadCod);
      mapa.put("strLibEle", strLibEle);
      lista = dao.getListaFilasPorPeriodoModalidadYDni(mapa);

    } catch (DAOException e) {
      throw new BusinessException(e);
    } catch (Exception e) {
      throw new BusinessException(e);
    }
    return lista;
  }