Esempio n. 1
0
File: Car.cs Progetto: mafarki/HW8
 public Car(int year, string model, string make, ColorsTypes carColors)
 {
     this._model    = model;
     this._make     = make;
     this._year     = year;
     this.vehColors = carColors;
 }
Esempio n. 2
0
 public Vehicle(int vin, int mileage, DateTime lastServicedDate, int lastServicedMileage, ColorsTypes newColor)
 {
     vehColors = ColorsTypes.blue;
 }