public DeepDish(Pizza theSize) { mSize = theSize; }
public Artisan(Pizza theSize) { mSize = theSize; }
public Chicago(Pizza theSize) { mSize = theSize; }
public Standard(Pizza theSize) { mSize = theSize; }
public ThinCrust(Pizza theSize) { mSize = theSize; }
public Onion(Pizza thePizza) { mPizza = thePizza; }
public Jalepeno(Pizza thePizza) { mPizza = thePizza; }
public Ham(Pizza thePizza) { mPizza = thePizza; }
public Pineapple(Pizza thePizza) { mPizza = thePizza; }
public Pepperoni(Pizza thePizza) { mPizza = thePizza; }