public static CENNotaCreditoDatosDescuento obtenerValoresDescuento(int codigo)
        {
            CLNNotaCredito notacredito       = new CLNNotaCredito();
            CENNotaCreditoDatosDescuento obj = null;

            try
            {
                obj = notacredito.obtenerValoresDescuento(codigo);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(obj);
        }