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