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


C# LayerBusinessEntities.tb_co_seguridadlog类代码示例

本文整理汇总了C#中LayerBusinessEntities.tb_co_seguridadlog的典型用法代码示例。如果您正苦于以下问题:C# tb_co_seguridadlog类的具体用法?C# tb_co_seguridadlog怎么用?C# tb_co_seguridadlog使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


tb_co_seguridadlog类属于LayerBusinessEntities命名空间,在下文中一共展示了tb_co_seguridadlog类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetAllSeguridadlog

 public DataSet GetAllSeguridadlog(string empresaid, tb_co_seguridadlog BE)
 {
     //return tablaDA.GetAllSeguridadlog(empresaid, BE);
     DataSet zreturn = tablaDA.GetAllSeguridadlog(empresaid, BE);
     Sql_Error = tablaDA.Sql_Error;
     return zreturn;
 }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:7,代码来源:tb_co_seguridadlogBL.cs

示例2: ELIMINAR

        public void ELIMINAR()
        {
            var BL = new tb_plla_tab0100BL();
            var BE = new tb_plla_tab0100();
            BE.codigo = cboTipoPlanilla.SelectedValue.ToString().Trim();
            if (BL.QuincenalRubros_DELETED(VariablesPublicas.EmpresaID, BE) == true)
            {
                var BLL = new tb_co_seguridadlogBL();
                var BEL = new tb_co_seguridadlog();
                BEL.moduloid = Name;
                BEL.clave = VariablesPublicas.EmpresaID + cboTipoPlanilla.SelectedValue.ToString().Trim();
                BEL.cuser = VariablesPublicas.Usuar;
                BEL.fecha = DateTime.Now;
                BEL.pc = VariablesPublicas.userip;
                BEL.accion = "B";
                BEL.detalle = "Descripción: " + "Quincena";
                BLL.Insert(VariablesPublicas.EmpresaID.ToString(), BEL);

                LIMPIARDETALLE();
                GRILLARUBROS();

                MessageBox.Show("Los Datos han sido Eliminados", "Información Del Sistema", MessageBoxButtons.OK, MessageBoxIcon.Information);

                HABILITARBOTONES(true);
                HABILITARCONTROLES(true);
                cboTipoPlanilla.Focus();
            }
        }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:28,代码来源:Frm_RubrosQuincenales.cs

示例3: Delete

 public bool Delete(string empresaid, tb_co_seguridadlog BE)
 {
     using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
     {
         using (SqlCommand cmd = new SqlCommand("gspTbCoSeguridadlog_DELETE", cnx))
         {
             {
                 cmd.CommandTimeout = 0;
                 cmd.CommandType = CommandType.StoredProcedure;
                 cmd.Parameters.Add("@moduloid", SqlDbType.VarChar, 70).Value = BE.moduloid;
                 cmd.Parameters.Add("@clave", SqlDbType.VarChar, 150).Value = BE.clave;
                 cmd.Parameters.Add("@cuser", SqlDbType.Char, 20).Value = BE.cuser;
                 cmd.Parameters.Add("@fecha", SqlDbType.DateTime).Value = BE.fecha;
                 //cmd.Parameters.Add("@correlativo", SqlDbType.Timestamp).Value = [email protected];
             }
             try
             {
                 cnx.Open();
                 if (cmd.ExecuteNonQuery() > 0)
                 {
                     return true;
                 }
                 else
                 {
                     return false;
                 }
             }
             catch (Exception ex)
             {
                 Sql_Error = ex.Message;
                 throw new Exception(ex.Message);
             }
         }
     }
 }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:35,代码来源:tb_co_seguridadlogDA.cs

示例4: GridSeguridad

        public void GridSeguridad()
        {
            var dt = new DataTable();
            var xclave = "...";
            if (_ClaveForm.Trim().Length > 0)
            {
                xclave = _ClaveForm.Trim();
            }
            var BL = new tb_co_seguridadlogBL();
            var BE = new tb_co_seguridadlog();

            BE.moduloid = _Nombre.Trim();
            BE.clave = xclave;
            dt = BL.GetAllSeguridadlog(VariablesPublicas.EmpresaID.ToString(), BE).Tables[0];
            dgSeguridad.AutoGenerateColumns = false;
            dgSeguridad.DataSource = dt;
            txtTotRegistro.Text = dt.Rows.Count.ToString();
        }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:18,代码来源:FrmSeguridad.cs

示例5: GetAll

 public DataSet GetAll(string empresaid, tb_co_seguridadlog BE)
 {
     using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
     {
         using (SqlCommand cmd = new SqlCommand("gspTbCoSeguridadlog_SEARCH", cnx))
         {
             DataSet ds = new DataSet();
             {
                 cmd.CommandTimeout = 0;
                 cmd.CommandType = CommandType.StoredProcedure;
                 cmd.Parameters.Add("@moduloid", SqlDbType.VarChar, 70).Value = BE.moduloid;
                 cmd.Parameters.Add("@clave", SqlDbType.VarChar, 150).Value = BE.clave;
                 cmd.Parameters.Add("@cuser", SqlDbType.Char, 20).Value = BE.cuser;
                 cmd.Parameters.Add("@fecha", SqlDbType.DateTime).Value = BE.fecha;
                 //cmd.Parameters.Add("@correlativo", SqlDbType.Timestamp).Value = [email protected];
                 cmd.Parameters.Add("@pc", SqlDbType.VarChar, 60).Value = BE.pc;
                 cmd.Parameters.Add("@accion", SqlDbType.Char, 1).Value = BE.accion;
                 cmd.Parameters.Add("@detalle", SqlDbType.VarChar, 150).Value = BE.detalle;
             }
             try
             {
                 cnx.Open();
                 using (SqlDataAdapter da = new SqlDataAdapter(cmd))
                 {
                     da.Fill(ds);
                 }
                 return ds;
             }
             catch (Exception ex)
             {
                 Sql_Error = ex.Message;
                 throw new Exception(ex.Message);
             }
         }
     }
 }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:36,代码来源:tb_co_seguridadlogDA.cs

示例6: seguridadlog

        private void seguridadlog()
        {
            string xclave = VariablesPublicas.EmpresaID + "/" + VariablesPublicas.perianio + "/" + txtCodsubdiario.Text + "/" + VariablesPublicas.PADL(fEmision.Value.Month.ToString().Trim(), 2, "0") + "-" + nAsiento;
            try
            {
                tb_co_seguridadlogBL BL = new tb_co_seguridadlogBL();
                tb_co_seguridadlog BE = new tb_co_seguridadlog();

                BE.moduloid = "Frm_Registro_Contabilidad";
                BE.clave = xclave;
                BE.cuser = VariablesPublicas.Usuar;
                BE.fecha = DateTime.Now;
                BE.pc = VariablesPublicas.userip;
                BE.accion = "N";
                BE.detalle = txtGlosa.Text;

                BL.Insert(VariablesPublicas.EmpresaID.ToString(), BE);
            }
            catch (Exception ex)
            {
                XtraMessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:23,代码来源:Frm_CanjeLetras.cs

示例7: btneliminar_Click

        private void btneliminar_Click(object sender, EventArgs e)
        {
            if (Examinar.CurrentRow != null)
            {
                var xnomcampo = string.Empty;
                if (xnomcampo.Length == 0)
                {
                    var BL = new tb_plla_ccostogenBL();
                    var BE = new tb_plla_ccostogen();

                    BE.codigo = Examinar.Rows[Examinar.CurrentRow.Index].Cells["codigo"].Value.ToString();
                    tmptabla = BL.GetAll_CONSULTACAB(VariablesPublicas.EmpresaID, BE).Tables[0];
                    if (BL.Sql_Error.Length == 0)
                    {
                        var message = "Desea eliminar Código  " + tmptabla.Rows[0]["codigo"].ToString().Trim() + " - " + tmptabla.Rows[0]["descripcion"].ToString().Trim() + " ...?";
                        var caption = "Mensaje del Sistema";
                        var buttons = MessageBoxButtons.YesNo;
                        DialogResult result;
                        result = MessageBox.Show(this, message, caption, buttons, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2);
                        if (result == DialogResult.Yes)
                        {
                            if (BL.Eliminar(VariablesPublicas.EmpresaID, tmptabla))
                            {
                                var BLL = new tb_co_seguridadlogBL();
                                var BEL = new tb_co_seguridadlog();

                                BEL.moduloid = Name;
                                BEL.clave = VariablesPublicas.EmpresaID + Examinar.Rows[Examinar.CurrentRow.Index].Cells["codigo"].Value.ToString();
                                BEL.cuser = VariablesPublicas.Usuar;
                                BEL.fecha = DateTime.Now;
                                BEL.pc = VariablesPublicas.userip;
                                BEL.accion = "B";
                                BEL.detalle = "DESCRIPCION :  BORRADO - ELIMINADO";

                                BLL.Insert(VariablesPublicas.EmpresaID.ToString(), BEL);
                                Examinar.Rows.Remove(Examinar.CurrentRow);
                                Examinar.Refresh();
                            }
                            else
                            {
                                Frm_Class.ShowError(BL.Sql_Error, this);
                            }
                        }
                    }
                    else
                    {
                        Frm_Class.ShowError(BL.Sql_Error, this);
                    }
                }
                else
                {
                    MessageBox.Show(xnomcampo, "IMPOSIBLE ELIMINAR REGISTRO");
                }
            }
            U_RefrescaControles();
        }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:56,代码来源:Frm_CcostoGeneralesPlanilla.cs

示例8: seguridadlog

        private void seguridadlog()
        {
            var xclave = VariablesPublicas.EmpresaID + cboTipoPlanilla.SelectedValue.ToString().Trim();
            try
            {
                var BL = new tb_co_seguridadlogBL();
                var BE = new tb_co_seguridadlog();

                BE.moduloid = Name;
                BE.clave = xclave;
                BE.cuser = VariablesPublicas.Usuar;
                BE.fecha = DateTime.Now;
                BE.pc = VariablesPublicas.userip;
                BE.accion = (n == 1 ? "N" : "M");
                BE.detalle = "Descripción: " + "Quincena";

                BL.Insert(VariablesPublicas.EmpresaID.ToString(), BE);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:23,代码来源:Frm_RubrosQuincenales.cs

示例9: SEGURIDAD_LOG

        private void SEGURIDAD_LOG(String accion)
        {
            var xclave = VariablesPublicas.EmpresaID + "/" + ((D60ALMACEN.MainAlmacen)MdiParent).perianio;
            try
            {
                var BL = new tb_co_seguridadlogBL();
                var BE = new tb_co_seguridadlog();

                BE.moduloid = Name;
                BE.clave = xclave;
                BE.cuser = VariablesPublicas.Usuar;
                BE.fecha = DateTime.Now;
                BE.pc = VariablesPublicas.userip;
                BE.accion = accion.Trim();
                BE.detalle = lineaid.Text.Trim() + grupoid.Text.Trim() + subgrupoid.Text.Trim() + "/" + subgruponame.Text.Trim().ToUpper() + "/" + subgrupoartic.Text.Trim() + "/" + XGLOSA;

                BL.Insert(VariablesPublicas.EmpresaID.ToString(), BE);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:23,代码来源:Frm_subgrupo.cs

示例10: btneliminar_Click

        private void btneliminar_Click(object sender, EventArgs e)
        {
            if ((Examinar.CurrentRow != null))
            {
                var xnomcampo = string.Empty;
                if (xnomcampo.Length == 0)
                {
                    var BL = new tb_plla_fichatrabajadoresBL();
                    var BE = new tb_plla_fichatrabajadores();
                    BE.Fichaid = Examinar.Rows[Examinar.CurrentRow.Index].Cells["fichaid"].Value.ToString();
                    BE.Empresaid = Examinar.Rows[Examinar.CurrentRow.Index].Cells["empresaid"].Value.ToString();
                    BE.Norden = 1;
                    BE.Estado_trabaj = 0;
                    tmptabla = BL.GetAll_Consulta(VariablesPublicas.EmpresaID, BE).Tables[0];
                    if (BL.Sql_Error.Length == 0)
                    {
                        var message = "Desea eliminar datos de Trabajador " + tmptabla.Rows[0]["fichaid"].ToString().Trim() + " - " + tmptabla.Rows[0]["nombrelargo"].ToString().Trim() + " ...?";
                        var caption = "Mensaje del Sistema";
                        var buttons = MessageBoxButtons.YesNo;
                        DialogResult result;
                        result = MessageBox.Show(this, message, caption, buttons, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2);
                        if (result == DialogResult.Yes)
                        {
                            var BL1 = new tb_plla_fichatrabajadoresBL();
                            if (BL1.Eliminar(VariablesPublicas.EmpresaID, tmptabla))
                            {
                                var BLS = new tb_co_seguridadlogBL();
                                var BES = new tb_co_seguridadlog();

                                BES.moduloid = Name;
                                BES.clave = VariablesPublicas.EmpresaID + Examinar.Rows[Examinar.CurrentRow.Index].Cells["fichaid"].Value.ToString();
                                BES.cuser = VariablesPublicas.Usuar;
                                BES.fecha = DateTime.Now;
                                BES.pc = VariablesPublicas.userip;
                                BES.accion = "B";
                                BES.detalle = "Trabajador:" + txtNombrelargo.Text.Trim();

                                BLS.Insert(VariablesPublicas.EmpresaID.ToString(), BES);
                                Examinar.Rows.Remove(Examinar.CurrentRow);
                                Examinar.Refresh();
                            }
                        }
                    }
                    else
                    {
                        Frm_Class.ShowError(BL.Sql_Error, this);
                    }
                }
                else
                {
                    MessageBox.Show(xnomcampo, "IMPOSIBLE ELIMINAR REGISTRO");
                }
            }
            U_RefrescaControles();
        }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:55,代码来源:Frm_RegistroTrabajadores.cs

示例11: seguridadlog

        public void seguridadlog(string mTipo)
        {
            //string xclave = VariablesPublicas.EmpresaID + VariablesPublicas.perianio +  cboSubdiario.SelectedValue.ToString() +  txtMes.Text +  txtSerie.Text +  txtNumero.Text;
            string xclave = VariablesPublicas.EmpresaID + "/" + VariablesPublicas.perianio + "/" + cboSubdiario.SelectedValue.ToString() + "/" + txtMes.Text + "-" + txtAsiento.Text;
            try
            {
                tb_co_seguridadlogBL BL = new tb_co_seguridadlogBL();
                tb_co_seguridadlog BE = new tb_co_seguridadlog();

                BE.moduloid = Name;
                BE.clave = xclave;
                BE.cuser = VariablesPublicas.Usuar;
                BE.fecha = DateTime.Now;
                BE.pc = VariablesPublicas.userip;
                BE.accion = mTipo;
                BE.detalle = txtGlosa.Text.Trim() + "/" + cboTipdoc.SelectedValue.ToString() + "-" + txtSerie.Text + "-" + txtNumero.Text + "/" + txtRuc.Text.Trim() + "-" + txtCtactename.Text.Trim();

                BL.Insert(VariablesPublicas.EmpresaID.ToString(), BE);
            }
            catch (Exception ex)
            {
                DevExpress.XtraEditors.XtraMessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:24,代码来源:Frm_RegistroVentas.cs

示例12: btnDelete_Click

        private void btnDelete_Click(object sender, EventArgs e)
        {
            if (Examinar.CurrentRow != null)
            {
                var xnomcampo = string.Empty;
                if (xnomcampo.Length == 0)
                {
                    var BL = new tb_plla_tipoplanillaBL();
                    var BE = new tb_plla_tipoplanilla();

                    BE.Tipoplla = Examinar.Rows[Examinar.CurrentRow.Index].Cells["tipoplla"].Value.ToString();
                    BE.norden = 1;
                    BE.ver_blanco = 0;
                    BE.solopdt = 0;
                    tmptabla = BL.GetAll_Consulta(VariablesPublicas.EmpresaID.ToString(), BE).Tables[0];
                    if (BL.Sql_Error.Length == 0)
                    {
                        var message = "Desea eliminar datos " + tmptabla.Rows[0]["tipoplla"].ToString().Trim() + " - " + tmptabla.Rows[0]["tipopllaname"].ToString().Trim() + " ...?";
                        var caption = "Mensaje del Sistema";
                        var buttons = MessageBoxButtons.YesNo;
                        DialogResult result;
                        result = MessageBox.Show(this, message, caption, buttons, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2);
                        if (result == DialogResult.Yes)
                        {
                            var BL1 = new tb_plla_tipoplanillaBL();
                            var BE1 = new tb_plla_tipoplanilla();

                            BE1.Tipoplla = BE.Tipoplla;
                            if (BL1.Delete(VariablesPublicas.EmpresaID.ToString(), BE1))
                            {
                                if (BL1.Sql_Error.Length == 0)
                                {
                                    var BLS = new tb_co_seguridadlogBL();
                                    var BES = new tb_co_seguridadlog();

                                    BES.moduloid = Name;
                                    BES.clave = VariablesPublicas.EmpresaID + Examinar.Rows[Examinar.CurrentRow.Index].Cells["tipoplla"].Value.ToString();
                                    BES.cuser = VariablesPublicas.Usuar;
                                    BES.fecha = DateTime.Now;
                                    BES.pc = VariablesPublicas.userip;
                                    BES.accion = "B";
                                    BES.detalle = "Descripción:" + txtdescripcion.Text.Trim();

                                    BLS.Insert(VariablesPublicas.EmpresaID.ToString(), BES);
                                    Examinar.Rows.Remove(Examinar.CurrentRow);
                                    Examinar.Refresh();
                                    u_PintaDatos();
                                }
                                else
                                {
                                    Frm_Class.ShowError(BL1.Sql_Error, this);
                                }
                            }
                        }
                    }
                    else
                    {
                        Frm_Class.ShowError(BL.Sql_Error, this);
                    }
                }
                else
                {
                    MessageBox.Show(xnomcampo, "Imposible Eliminar Registro !!!");
                }
            }
            U_RefrescaControles();
        }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:67,代码来源:Frm_TipoPlanilla.cs

示例13: seguridadlog

        private void seguridadlog()
        {
            var xclave = VariablesPublicas.EmpresaID + txtcodigo.Text.Trim();
            try
            {
                var BL = new tb_co_seguridadlogBL();
                var BE = new tb_co_seguridadlog();

                BE.moduloid = Name;
                BE.clave = xclave;
                BE.cuser = VariablesPublicas.Usuar;
                BE.fecha = DateTime.Now;
                BE.pc = VariablesPublicas.userip;
                BE.accion = (u_n_opsel == 1 ? "N" : "M");
                BE.detalle = "Motivo: " + txtdescripcion.Text;

                BL.Insert(VariablesPublicas.EmpresaID.ToString(), BE);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:23,代码来源:Frm_Planilla_GenMotivosPermiso.cs

示例14: Insert

 public bool Insert(string empresaid, tb_co_seguridadlog BE)
 {
     return tablaDA.Insert(empresaid, BE);
 }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:4,代码来源:tb_co_seguridadlogBL.cs

示例15: GetOne

 public DataSet GetOne(string empresaid, tb_co_seguridadlog BE)
 {
     return tablaDA.GetOne(empresaid, BE);
 }
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:4,代码来源:tb_co_seguridadlogBL.cs


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