예제 #1
0
 public Vehiculo(string patente, Emarcas marca, byte cantidadruedas)
 {
     this._patente    = patente;
     this._cantRuedas = cantidadruedas;
     this._marcas     = marca;
 }
예제 #2
0
파일: Auto.cs 프로젝트: ezeperezcrack/c--
 public Auto(string a, byte b, Emarcas c, int ca) : base(a, b, c)
 {
     this._cantidadAsientos = ca;
 }
예제 #3
0
 public Moto(string a, byte b, Emarcas c, float ci) : base(a, b, c)
 {
     this._cilindrada = ci;
 }
예제 #4
0
 public Camion(string a, byte b, Emarcas c, float t) : base(a, b, c)
 {
     this._tara = t;
 }
예제 #5
0
파일: Vehiculo.cs 프로젝트: schlieter/C-
 public Vehiculo(string p, byte c, Emarcas m)
 {
     this._patente    = p;
     this._cantRuedas = c;
     this._marca      = m;
 }
예제 #6
0
 public Moto(string patente, Emarcas marca, byte cantidadruedas)
 {
     base._patente    = patente;
     base._cantRuedas = cantidadruedas;
     base._marcas     = marca;
 }