private void txtSalario_KeyPress(object sender, KeyPressEventArgs e) { Validar v = new Validar(); v.soloNumeros(e); }
private void txtApellido_KeyPress(object sender, KeyPressEventArgs e) { Validar v = new Validar(); v.soloLetras(e); }