Exemplo n.º 1
0
 public Size(AStore store, decimal p, int i, APizzaComponent apc)
 {
     Store     = store;
     Price     = p;
     Inventory = i;
     PizzaType = apc;
 }
Exemplo n.º 2
0
 public Size(AStore store, decimal p, int i, string n, ItemType t)
 {
     Store     = store;
     Price     = p;
     Inventory = i;
     PizzaType = new APizzaComponent(n, t);
 }
Exemplo n.º 3
0
 public Crust(AStore store, decimal p, int i, APizzaComponent apc)
 {
     CheeseStuffed = false;
     StuffedPrice  = 1.50m;
     Store         = store;
     Price         = p;
     Inventory     = i;
     PizzaType     = apc;
 }
Exemplo n.º 4
0
 public Crust(AStore store, decimal p, int i, string n, ItemType t)
 {
     CheeseStuffed = false;
     StuffedPrice  = 1.50m;
     Store         = store;
     Price         = p;
     Inventory     = i;
     PizzaType     = new APizzaComponent(n, t);
 }