private void CargarSeleccion() { cod_estudios oEstudio = new cod_estudios(); EstudioImplement oEstudioImplement = new EstudioImplement(); DataGridViewRow row = this.dgvEstudio.CurrentRow; int id = Convert.ToInt32(row.Cells[0].Value); oEstudio = oEstudioImplement.Get(id); this.lblCodigo.Text = oEstudio.id_estudio.ToString(); this.txtNombre.Text = oEstudio.descripcion; this.txtDireccion.Text = oEstudio.direccion; this.txtTelefono.Text = oEstudio.telefono; this.txtContacto.Text = oEstudio.contacto; this.gbEstudio.Enabled = false; Deshabilitar(); }
private void CargarEstudio() { EstudioImplement oEstudioImplement = new EstudioImplement(); oEstudioImplement.CargarCombo(this.cmbPJEstudio, "Seleccione Estudio"); }
private void Guardar() { cod_estudios oEstudio = new cod_estudios(); EstudioImplement oEstudioImplement = new EstudioImplement(); if (this.lblCodigo.Text == "") { oEstudio.descripcion = this.txtNombre.Text; oEstudio.direccion = this.txtDireccion.Text; oEstudio.contacto = this.txtContacto.Text; oEstudio.telefono = this.txtTelefono.Text; oEstudioImplement.Save(oEstudio); } else { DataGridViewRow row = this.dgvEstudio.CurrentRow; int id = Convert.ToInt32(row.Cells[0].Value); oEstudio = oEstudioImplement.Get(id); oEstudio.descripcion = this.txtNombre.Text; oEstudio.direccion = this.txtDireccion.Text; oEstudio.contacto = this.txtContacto.Text; oEstudio.telefono = this.txtTelefono.Text; oEstudioImplement.Update(oEstudio); } Deshabilitar(); Limpiar(); CargarGrid(); }
private void CargarGrid() { EstudioImplement oEstudioImplement = new EstudioImplement(); this.dgvEstudio.DataSource = oEstudioImplement.Buscar(""); this.dgvEstudio.Enabled = true; }
private void ModificarEstudio() { HabilitarBotones(); this.gbEstudio.Enabled = true; cod_estudios oEstudio = new cod_estudios(); EstudioImplement oEstudioImplement = new EstudioImplement(); DataGridViewRow row = this.dgvEstudio.CurrentRow; int id = Convert.ToInt32(row.Cells[0].Value); oEstudio = oEstudioImplement.Get(id); this.lblCodigo.Text = oEstudio.id_estudio.ToString(); this.txtNombre.Text = oEstudio.descripcion; this.txtDireccion.Text = oEstudio.direccion; this.txtTelefono.Text = oEstudio.telefono; this.dgvEstudio.Enabled = false; }