protected Corredor(short velocidadMax, ECarril carril) { this.carrilElegido = carril; this.VelocidadMax = velocidadMax; }
protected Corredor(short velMax, ECarril carril) { this.VelocidadMaxima = velMax; this._carriElegido = carril; }
public Persona(string nombre, short velocidadMax, ECarril carril) : base(velocidadMax, carril) { this.nombre = nombre; }