private void btnGuardar_Click(object sender, EventArgs e) { CLS.Editoriales oEditorial = new CLS.Editoriales(); oEditorial.IDEditorial = txtIDEditorial.Text; oEditorial.Nombre = txtEditorial.Text; oEditorial.Direccion = txtDireccion.Text; oEditorial.Telefono = txtTelefono.Text; if (txtIDEditorial.TextLength > 0) { if (oEditorial.Actualzar()) { MessageBox.Show("Actualizado"); Close(); } else { MessageBox.Show("Falló la Actualizacion"); } } else { if (oEditorial.Insertar()) { MessageBox.Show("Insertado"); Close(); } else { MessageBox.Show("Falló la Insercion"); } } }
private void btnEliminar_Click(object sender, EventArgs e) { if (MessageBox.Show("Desea eliminar el registro seleccionado?", "Pregunta", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { CLS.Editoriales oEditorial = new CLS.Editoriales(); oEditorial.IDEditorial = dtgRegistros.CurrentRow.Cells["IDEditorial"].Value.ToString(); if (oEditorial.Eliminar()) { MessageBox.Show("Eliminado"); CargarDatos(); } else { MessageBox.Show("Falló la eliminación"); } } }