private void btnagregar2_Click(object sender, EventArgs e) { try { PRUEBAS_PARTICIPANTES p = new PRUEBAS_PARTICIPANTES(); p.ID_Pruebas = Convert.ToInt32(IdPruebas); p.ID_Participantes = Convert.ToInt32(IdParticipantes); Formato objformato = new Formato(); objformato = new Formato(); objformato.Texto = txtnota.Text.Trim(); objformato.PatronValidacion = Constantes.PatronTEL; if (!R_Humanos.ValidarTexto(objformato)) { MessageBox.Show("El formato de la NOTA no es valido, corregir por favor"); return; } p.Nota = Convert.ToInt32(txtnota.Text.Trim()); R_Humanos.AgregarNotaPruebas(p); MessageBox.Show("Nota agregada correctamente"); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void btnagregar_Click(object sender, EventArgs e) { try { PARTICIPANTES p = new PARTICIPANTES(); p.ID_Reclutamiento = Convert.ToInt32(nombrepuesto); /*********************************************************************************************/ Formato objformato = new Formato(); objformato.Texto = txtcedula.Text.Trim(); objformato.PatronValidacion = Constantes.PatronID; if (!R_Humanos.ValidarTexto(objformato)) { MessageBox.Show("El formato de la Cédula no es valido, corregir por favor"); return; } p.Cedula_ = txtcedula.Text.Trim(); /*********************************************************************************************/ objformato = new Formato(); objformato.Texto = txtnombre.Text.Trim(); objformato.PatronValidacion = Constantes.PatronNOMBRE; if (!R_Humanos.ValidarTexto(objformato) || objformato.Texto.Length == 0) { MessageBox.Show("El formato del Nombre no es valido, corregir por favor"); return; } p.Nombre = txtnombre.Text.Trim(); /*********************************************************************************************/ objformato = new Formato(); objformato.Texto = txtapellido1.Text.Trim(); objformato.PatronValidacion = Constantes.PatronNOMBRE; if (!R_Humanos.ValidarTexto(objformato) || objformato.Texto.Length == 0) { MessageBox.Show("El formato del Apellido no es valido, corregir por favor"); return; } p.Apellido_1 = txtapellido1.Text.Trim(); /*********************************************************************************************/ objformato = new Formato(); objformato.Texto = txtapellido2.Text.Trim(); objformato.PatronValidacion = Constantes.PatronNOMBRE; if (!R_Humanos.ValidarTexto(objformato) || objformato.Texto.Length == 0) { MessageBox.Show("El formato del Apellido no es valido, corregir por favor"); return; } p.Apellido_2 = txtapellido2.Text.Trim(); /*********************************************************************************************/ objformato = new Formato(); objformato.Texto = txtcorreo.Text.Trim(); objformato.PatronValidacion = Constantes.PatronCORREO; if (!R_Humanos.ValidarTexto(objformato)) { MessageBox.Show("El formato del CORREO no es valido, corregir por favor"); return; } p.Correo = txtcorreo.Text.Trim(); /*********************************************************************************************/ objformato = new Formato(); objformato.Texto = txttelefono.Text.Trim(); objformato.PatronValidacion = Constantes.PatronTEL; if (!R_Humanos.ValidarTexto(objformato)) { MessageBox.Show("El formato del TELÉFONO no es valido, corregir por favor"); return; } p.Telefono = txttelefono.Text.Trim(); /*********************************************************************************************/ p.ID_Provincia = provincia_id; p.ID_Canton = canton_id; p.ID_Distrito = Convert.ToInt32(id_Distritos); p.Direccion = txtdireccion.Text.Trim(); p.Estado = Convert.ToInt32(nombreEstado); R_Humanos.AgregarPostulantes(p); MessageBox.Show("Postulante agregado correctamente"); limpiar(); cargarGridParticipantes(); cboreclutamiento.Focus(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void btnagregar_Click(object sender, EventArgs e) { try { PERSONAL p = new PERSONAL(); p.ID_Puesto = Convert.ToInt32(nombrepuesto); /*********************************************************************************************/ Formato objformato = new Formato(); objformato.Texto = txtcedula.Text.Trim(); objformato.PatronValidacion = Constantes.PatronID; if (!R_Humanos.ValidarTexto(objformato)) { MessageBox.Show("El formato de la Cédula no es valido, corregir por favor"); return; } p.Cedula = txtcedula.Text.Trim(); /*********************************************************************************************/ objformato = new Formato(); objformato.Texto = txtnombre.Text.Trim(); objformato.PatronValidacion = Constantes.PatronNOMBRE; if (!R_Humanos.ValidarTexto(objformato) || objformato.Texto.Length == 0) { MessageBox.Show("El formato del Nombre no es valido, corregir por favor"); return; } p.Nombre = txtnombre.Text.Trim(); /*********************************************************************************************/ objformato = new Formato(); objformato.Texto = txtapellido1.Text.Trim(); objformato.PatronValidacion = Constantes.PatronNOMBRE; if (!R_Humanos.ValidarTexto(objformato) || objformato.Texto.Length == 0) { MessageBox.Show("El formato del Apellido no es valido, corregir por favor"); return; } p.Apellido_1 = txtapellido1.Text.Trim(); /*********************************************************************************************/ objformato = new Formato(); objformato.Texto = txtapellido2.Text.Trim(); objformato.PatronValidacion = Constantes.PatronNOMBRE; if (!R_Humanos.ValidarTexto(objformato) || objformato.Texto.Length == 0) { MessageBox.Show("El formato del Apellido no es valido, corregir por favor"); return; } p.Apellido_2 = txtapellido2.Text.Trim(); /*********************************************************************************************/ p.Salario_Hora = Convert.ToDecimal(txtsalariohora.Text.Trim()); p.Salario_Mensual = Convert.ToDecimal(txtsalariomes.Text.Trim()); p.Fecha_Contratacion = Convert.ToDateTime(dtpfecha.Text.Trim()); p.Estado = Convert.ToInt32(nombreEstado); p.Direccion = txtdireccion.Text.Trim(); /*********************************************************************************************/ objformato = new Formato(); objformato.Texto = txtcorreo.Text.Trim(); objformato.PatronValidacion = Constantes.PatronCORREO; if (!R_Humanos.ValidarTexto(objformato)) { MessageBox.Show("El formato del CORREO no es valido, corregir por favor"); return; } p.Correo_Electronico = txtcorreo.Text.Trim(); /*********************************************************************************************/ objformato = new Formato(); objformato.Texto = txttelefono.Text.Trim(); objformato.PatronValidacion = Constantes.PatronTEL; if (!R_Humanos.ValidarTexto(objformato)) { MessageBox.Show("El formato del TELÉFONO no es valido, corregir por favor"); return; } p.Telefono = txttelefono.Text.Trim(); R_Humanos.AgregarPersonal(p); MessageBox.Show("Personal agregado correctamente"); cargarGridPersonal(); txtcedula.Focus(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }