/*Métodos Reporte ReportRetiros*/
        public ActionResult ReportRetiros()
        {
            ReportRetiros rptsimple = new ReportRetiros();
            String        error;

            rptsimple.cargaNegocioPais(out error);
            rptsimple.cargaPaises(out error);
            rptsimple.cargaServicioNegocio(out error);
            return(View(rptsimple));
        }
 public string getReportRetiros(String id, String filtro, String pais, String negocio, String serneg, String fec_desde, String fec_hasta, String flg_docto)
 {
     byte[] filestream = new ReportRetiros().getReporteRetiros(id, pais, negocio, serneg, fec_desde, fec_hasta, flg_docto);
     return(Convert.ToBase64String(filestream));
 }