private void CargarSeleccion() { cod_estados_pj oEstadoPJ = new cod_estados_pj(); EstadoPJImplement oEstadosPJImplement = new EstadoPJImplement(); DataGridViewRow row = this.dgvstado.CurrentRow; int id = Convert.ToInt32(row.Cells[0].Value); oEstadoPJ = oEstadosPJImplement.Get(id); this.lblCodigo.Text = oEstadoPJ.id_cod_estado_pj.ToString(); this.txtNombre.Text = oEstadoPJ.descripcion; this.gbEstado.Enabled = false; Deshabilitar(); }
private void Guardar() { cod_estados_pj oEstadoPJ = new cod_estados_pj(); EstadoPJImplement oEstadosPJImplement = new EstadoPJImplement(); if (this.lblCodigo.Text == "") { oEstadoPJ.descripcion = this.txtNombre.Text; oEstadosPJImplement.Save(oEstadoPJ); } else { DataGridViewRow row = this.dgvstado.CurrentRow; int id = Convert.ToInt32(row.Cells[0].Value); oEstadoPJ = oEstadosPJImplement.Get(id); oEstadoPJ.descripcion = this.txtNombre.Text; oEstadosPJImplement.Update(oEstadoPJ); } Deshabilitar(); this.txtNombre.Text = ""; CargarGrid(); }