private void btncrear_Click(object sender, EventArgs e) { try { RECLUTAMIENTO p = new RECLUTAMIENTO(); // p.ID_Puestos = Convert.ToInt32(cboidpuesto.Text.Trim()); p.ID_Puestos = puestos; p.Nombre = nombrepuesto; p.Descripcion = txtdescripcion.Text.Trim(); // p.Estado = Convert.ToInt32(cboestado.Text.Trim()); p.Estado = Convert.ToInt32(nombreEstado); R_Humanos.AgregarReclutamiento(p); MessageBox.Show("Reclutamiento creado con éxito"); } catch (Exception ex) { MessageBox.Show(ex.Message); } }