// Agregado por Percy Santiago 10/11/2016
        public List <gsReporteFacturasInafectasV1Result> Reporte_FacturasInafecta(int idEmpresa, int codigoUsuario, System.DateTime dtpFechaInicio, System.DateTime dtpFechaFin, int tipodocumento, string Cliente)
        {
            CobranzasBL objCobranzasBL;

            try
            {
                List <gsReporteFacturasInafectasV1Result> list = new List <gsReporteFacturasInafectasV1Result>();

                objCobranzasBL = new CobranzasBL();
                list           = objCobranzasBL.Reporte_FacturasInafecta(idEmpresa, codigoUsuario, dtpFechaInicio, dtpFechaFin, tipodocumento, Cliente);

                return(list);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }