예제 #1
0
파일: Car.cs 프로젝트: mafarki/HW8
 public Car(int year, string model, string make, ColorsTypes carColors)
 {
     this._model    = model;
     this._make     = make;
     this._year     = year;
     this.vehColors = carColors;
 }
예제 #2
0
 public Vehicle(int vin, int mileage, DateTime lastServicedDate, int lastServicedMileage, ColorsTypes newColor)
 {
     vehColors = ColorsTypes.blue;
 }