public void CorrerCarrera(Tiempo tiempo) { this.PorTiempo((int)tiempo); }
public void AgregarTiempo(int time) { this._tiempoDemorado = this._tiempoDemorado + time; }
public void Agregar(int km, Tiempo tiempo) { this.AgregarTiempo((int)tiempo); this.AgregarKilometros(km); }
public void VolverAcero() { this._kmRecorridos = 0; this._tiempoDemorado = 0; }