//Define the IProductBuilder interface to be used as the "blueprint" for the main Builder classes.
public interface IProductBuilder
{
ProductFactory Product { get; }

void BuildFrame();
void BuildEngine();
void BuildWheels();
void BuildDoors();
}

//The MotorCycleBuilder class (object) represents a Builder class.
public class MotorCycleBuilder : IProductBuilder
{
public MotorCycleBuilder()
{
Product = new ProductFactory("MotorCycle");
}

public ProductFactory Product { get; private set; }

public void BuildFrame()
{
Product["frame"] = "MotorCycle Frame";
}

public void BuildEngine()
{
Product["engine"] = "500 cc";
}

public void BuildWheels()
{
Product["wheels"] = "2";
}

public void BuildDoors()
{
Product["doors"] = "0";
}
}

//The VehicleBuilder class (object) represents a Builder class.
public class VehicleBuilder : IProductBuilder
{
public VehicleBuilder()
{
Product = new ProductFactory("Vehicle");
}

public ProductFactory Product { get; private set; }

public void BuildFrame()
{
Product["frame"] = "Vehicle Frame";
}

public void BuildEngine()
{
Product["engine"] = "2500 cc";
}

public void BuildWheels()
{
Product["wheels"] = "4";
}

public void BuildDoors()
{
Product["doors"] = "4";
}
}

//The ScooterBuilder class (object) represents a Builder class.
public class ScooterBuilder : IProductBuilder
{
public ScooterBuilder()
{
Product = new ProductFactory("Scooter");
}

public ProductFactory Product { get; private set; }

public void BuildFrame()
{
Product["frame"] = "Scooter Frame";
}

public void BuildEngine()
{
Product["engine"] = "50 cc";
}

public void BuildWheels()
{
Product["wheels"] = "2";
}

public void BuildDoors()
{
Product["doors"] = "0";
}
}