Exemple #1
0
    public static string GetLabel(this FoodType food)
    {
        string name  = food.GetProperName();
        string price = Utilities.FormatMoney(food.GetPrice());

        return(name + " " + price);
    }