当前位置: 首页>>代码示例>>C#>>正文


C# Conexion.ExecuteEscalarParaAdicionarProcesoDisciplianario方法代码示例

本文整理汇总了C#中Brainsbits.LDA.Conexion.ExecuteEscalarParaAdicionarProcesoDisciplianario方法的典型用法代码示例。如果您正苦于以下问题:C# Conexion.ExecuteEscalarParaAdicionarProcesoDisciplianario方法的具体用法?C# Conexion.ExecuteEscalarParaAdicionarProcesoDisciplianario怎么用?C# Conexion.ExecuteEscalarParaAdicionarProcesoDisciplianario使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Brainsbits.LDA.Conexion的用法示例。


在下文中一共展示了Conexion.ExecuteEscalarParaAdicionarProcesoDisciplianario方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: AdicionarProcesoDisciplinario

        public Decimal AdicionarProcesoDisciplinario(Decimal REGISTRO_DESCARGO, DateTime FECHA_R, DateTime FECHA_PROCESO, String TIPO_PROCESO, String MOTIVO, String DESCRIPCION, Decimal DIAS_SANCION, Byte[] ARCHIVO_REGISTRO,
            Int32 ARCHIVO_REGISTRO_TAMANO,
            String ARCHIVO_REGISTRO_EXTENSION,
            String ARCHIVO_REGISTRO_TYPE)
        {
            String sql = null;
            String ID = null;
            String informacion = null;
            Boolean ejecutar = true;
            Boolean ejecutadoCorrectamente = true;

            tools _tools = new tools();

            sql = "usp_con_reg_proceso_disciplinario_adicionar ";

            #region validaciones
            if (REGISTRO_DESCARGO != 0)
            {
                sql += REGISTRO_DESCARGO + ", ";
                informacion += "REGISTRO_DESCARGO = " + REGISTRO_DESCARGO + ", ";
            }
            else
            {
                MensajeError += "El campo REGISTRO_DESCARGO no puede ser 0\n";
                ejecutar = false;
            }

            sql += "'" + _tools.obtenerStringConFormatoFechaSQLServer(FECHA_R) + "', ";
            informacion += "FECHA_R = '" + _tools.obtenerStringConFormatoFechaSQLServer(FECHA_R) + "', ";

            sql += "'" + _tools.obtenerStringConFormatoFechaSQLServer(FECHA_PROCESO) + "', ";
            informacion += "FECHA_PROCESO = '" + _tools.obtenerStringConFormatoFechaSQLServer(FECHA_PROCESO) + "', ";

            if (!(String.IsNullOrEmpty(TIPO_PROCESO)))
            {
                sql += "'" + TIPO_PROCESO + "', ";
                informacion += "TIPO_PROCESO = '" + TIPO_PROCESO + "', ";
            }
            else
            {
                MensajeError += "El campo TIPO_PROCESO no puede ser nulo\n";
                ejecutar = false;
            }

            if (!(String.IsNullOrEmpty(MOTIVO)))
            {
                sql += "'" + MOTIVO + "', ";
                informacion += "MOTIVO = '" + MOTIVO + "', ";
            }
            else
            {
                sql += "'null, ";
                informacion += "MOTIVO = 'null', ";
            }

            if (!(String.IsNullOrEmpty(DESCRIPCION)))
            {
                sql += "'" + DESCRIPCION + "', ";
                informacion += "DESCRIPCION = '" + DESCRIPCION + "', ";
            }
            else
            {
                sql += "null, ";
                informacion += "DESCRIPCION = 'null', ";
            }

            if (DIAS_SANCION != 0)
            {
                sql += DIAS_SANCION + ", ";
                informacion += "DIAS_SANCION = " + DIAS_SANCION + ", ";
            }
            else
            {
                sql += "NULL, ";
                informacion += "DIAS_SANCION = 'NULL', ";
            }

            sql += "'[DATOS_BINARIOS]', ";
            informacion += "ARCHIVO_REGISTRO = '[DATOS_BINARIOS]', ";

            sql += "'" + ARCHIVO_REGISTRO_EXTENSION + "', ";
            informacion += "ARCHIVO_REGISTRO_EXTENSION = '" + ARCHIVO_REGISTRO_EXTENSION + "', ";

            sql += ARCHIVO_REGISTRO_TAMANO + ", ";
            informacion += "ARCHIVO_REGISTRO_TAMANO = '" + ARCHIVO_REGISTRO_TAMANO + "', ";

            sql += "'" + ARCHIVO_REGISTRO_TYPE + "', ";
            informacion += "ARCHIVO_REGISTRO_TYPE = '" + ARCHIVO_REGISTRO_TYPE + "', ";

            sql += "'" + Usuario + "'";
            informacion += "USU_CRE = '" + Usuario.ToString() + "'";
            #endregion validaciones

            if (ejecutar)
            {
                Conexion conexion = new Conexion(Empresa);
                conexion.IniciarTransaccion();
                try
                {
                    ID = conexion.ExecuteEscalarParaAdicionarProcesoDisciplianario(REGISTRO_DESCARGO, FECHA_R, FECHA_PROCESO, TIPO_PROCESO, MOTIVO, DESCRIPCION, DIAS_SANCION, ARCHIVO_REGISTRO, ARCHIVO_REGISTRO_EXTENSION, ARCHIVO_REGISTRO_TAMANO, ARCHIVO_REGISTRO_TYPE, Usuario);
//.........这里部分代码省略.........
开发者ID:jquirogadesarrollador,项目名称:Varu,代码行数:101,代码来源:descargo.cs


注:本文中的Brainsbits.LDA.Conexion.ExecuteEscalarParaAdicionarProcesoDisciplianario方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。