public static void Main() { Greeting(); int [] breadArray = BreadSelection(); int [] pastryArray = PastrySelection(); Bread newBread = new Bread(breadArray); newBread.AddBreadOrder(); newBread.SetPrice(); Pastry newPastry = new Pastry(pastryArray); newPastry.AddPastryOrder(); newPastry.SetPrice(); OrderOutput(newBread, newPastry); }