Ejemplo n.º 1
0
 public Auto(string a, string b, ETipoCombustible c, float d) : this(a, b, c)
 {
     //this._marca = a;
     //this._color = b;
     //this._tipoCombustible = c;
     this._precio = d;
 }
Ejemplo n.º 2
0
 public Auto(string g, string h, ETipoCombustible i, float j)
 {
     this._color           = g;
     this._marca           = h;
     this._tipocombustible = i;
     this._precio          = j;
 }
Ejemplo n.º 3
0
 public Auto()
 {
     this._marca           = "---";
     this._color           = "---";
     this._tipoCombustible = ETipoCombustible.Sin_tipo;
     this._precio          = 0;
 }
Ejemplo n.º 4
0
 public Auto(string a, string b, ETipoCombustible c) : this(a, b)
 {
     //this._marca = a;
     //this._color = b;
     this._tipoCombustible = c;
 }
Ejemplo n.º 5
0
 public Auto(string d, string e, ETipoCombustible f)
 {
     this._marca           = d;
     this._color           = e;
     this._tipocombustible = f;
 }