コード例 #1
0
 private void ManufactureParts()
 {
     this.manufacturedChassis = factory.ManufactureChassis();
     this.manufacturedBody    = factory.ManufactureBody();
     this.manufacturedEngine  = factory.ManufactureEngine();
 }
コード例 #2
0
 private Vehicle Assembly(Chassis chassis, Body body, Engine engine)
 {
     return(new Vehicle(chassis, body, engine));
 }