private void BuscarEmpleado_Click(object sender, EventArgs e) { BuscadorEmpleado buscador = new BuscadorEmpleado(); buscador.ShowDialog(this); this.cargarEmpleado(buscador.getEmpleado()); }
private void bAuditor_Click(object sender, EventArgs e) { BuscadorEmpleado buscadorEmpleados = new BuscadorEmpleado(false, "Analista"); buscadorEmpleados.ShowDialog(this); auditor = buscadorEmpleados.getEmpleado(); tAuditor.Text = auditor.apellido.ToUpper() + ", " + auditor.nombre; }