private void BtAltaEmpleado_Click(object sender, RoutedEventArgs e) { AltaEmpleado altaEmpleado; altaEmpleado = new AltaEmpleado(); altaEmpleado.Show(); this.Close(); }
private void BtAlta_Click(object sender, RoutedEventArgs e) { int res, id; char sexo; if (rbHombre.IsChecked == true) { sexo = 'H'; } else { if (rbMujer.IsChecked == true) { sexo = 'M'; } else { sexo = 'O'; } } String fecha = "" + (cbAnio.SelectedIndex + 1960) + "-" + (cbMes.SelectedIndex + 1) + "-" + (cbDia.SelectedIndex + 1); Empleados emp = new Empleados(tbNombre.Text, tbApellidoPaterno.Text, tbApellidoMaterno.Text, fecha, sexo, tbDireccion.Text, (cbPuesto.Text).ToString()); res = emp.agregar(emp); if (res > 0) { MessageBox.Show("Empleado dado de alta"); AltaEmpleado main = new AltaEmpleado(); main.Show(); this.Close(); } else { MessageBox.Show("No se pudo dar de alta"); } }