public List <gsDocVenta_ReporteVenta_ClienteResult> Reporte_VentasCliente(int idEmpresa, int codigoUsuario, string codAgenda, string codigoVendedor, DateTime fechaInicial, DateTime fechaFinal, string ESTADO)
        {
            CobranzasBL objCobranzasBL;

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

                objCobranzasBL = new CobranzasBL();
                list           = objCobranzasBL.Reporte_VentasCliente(idEmpresa, codigoUsuario, codAgenda, codigoVendedor, fechaInicial, fechaFinal, ESTADO);

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