Example #1
0
 public Camion(int cantAsientos, float tara, float cilindrada, string patente, byte cantRuedas, Enumeraciones.EMarca marca)
     : base(patente, cantRuedas, marca)
 {
     this._cantidadAsientos = cantAsientos;
     this._tara             = tara;
     this._cilindrada       = cilindrada;
 }
Example #2
0
 public Vehiculo(string patente, byte cantRuedas, Enumeraciones.EMarca marca)
 {
     this._patente    = patente;
     this._cantRuedas = cantRuedas;
     this._marca      = marca;
 }