コード例 #1
0
 public VehicleModification(VehicleBrand vehicle, VehicleModification vehicleModification)
 {
     this.VehicleBrand = vehicle;
     this.model        = vehicleModification.model;
     this.modelCode    = vehicleModification.modelCode;
     this.releaseStart = vehicleModification.releaseStart;
     this.releaseEnd   = vehicleModification.releaseEnd;
 }
コード例 #2
0
 public VehicleModification(VehicleBrand vehicle, string model, string modelCode, string releaseStart, string releaseEnd)
 {
     this.VehicleBrand = vehicle;
     this.model        = model;
     this.modelCode    = modelCode;
     this.releaseStart = releaseStart;
     this.releaseEnd   = releaseEnd;
 }