void textBoxLegajo_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { this.tarjetaFichada = new TarjetaFichadaEntity(this.textBoxStringTarjeta.Text); this.fichada = new FichadaEntity(0, tarjetaFichada.Legajo); this.procesaFichada(fichada); } }