Ejemplo n.º 1
0
        // When the user has selected a pizza or pizzas this method then get the list of pizzas from the temp table
        // and then returns the list of pizzas to be displayed
        public List <Pizza> DisplayAddedPizza()
        {
            DbControl dal = new DbControl();

            return(dal.DisplaySelectedPizzas());
        }