// gets all the pizzas from the database then returns a list of all the pizzas to display public List <Pizza> DisplayPizza() { DbControl dal = new DbControl(); return(dal.DisplayAllPizza()); }