public string AddFood(string type, string name, decimal price)
        {
            this.menu.Add(FoodFactory.CreateFood(type, name, price));

            return($"Added {name} ({type}) with price {price:f2} to the pool");
        }