private void tlbMenu_DeleteClick() { try { Cursor = Cursors.WaitCursor; if (XtraMessageBox.Show("Esta seguro de eliminar el registro?", this.Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { if (!ValidarIngreso()) { TipoEntregaBE objE_TipoEntrega = new TipoEntregaBE(); objE_TipoEntrega.IdTipoEntrega = int.Parse(gvTipoEntrega.GetFocusedRowCellValue("IdTipoEntrega").ToString()); objE_TipoEntrega.Usuario = Parametros.strUsuarioLogin; objE_TipoEntrega.Maquina = WindowsIdentity.GetCurrent().Name.ToString(); objE_TipoEntrega.IdEmpresa = Parametros.intEmpresaId; TipoEntregaBL objBL_TipoEntrega = new TipoEntregaBL(); objBL_TipoEntrega.Elimina(objE_TipoEntrega); XtraMessageBox.Show("El registro se eliminó correctamente", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information); Cargar(); } } Cursor = Cursors.Default; } catch (Exception ex) { Cursor = Cursors.Default; XtraMessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnGrabar_Click(object sender, EventArgs e) { try { Cursor = Cursors.WaitCursor; if (!ValidarIngreso()) { TipoEntregaBL objBL_TipoEntrega = new TipoEntregaBL(); TipoEntregaBE objTipoEntrega = new TipoEntregaBE(); objTipoEntrega.IdTipoEntrega = IdTipoEntrega; objTipoEntrega.DescTipoEntrega = txtDescripcion.Text; objTipoEntrega.FlagEstado = true; objTipoEntrega.Usuario = Parametros.strUsuarioLogin; objTipoEntrega.Maquina = WindowsIdentity.GetCurrent().Name.ToString(); objTipoEntrega.IdEmpresa = Parametros.intEmpresaId; if (pOperacion == Operacion.Nuevo) { objBL_TipoEntrega.Inserta(objTipoEntrega); } else { objBL_TipoEntrega.Actualiza(objTipoEntrega); } this.Close(); } } catch (Exception ex) { Cursor = Cursors.Default; XtraMessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error); } }