public string DescribeTaco() { return($"Ingredients Available: \n\n" + $"{_poultry.PoultryClass()}\t\t\t R{_poultry.Price()}\n" + $"{_meat.MeatClass()}\t\t\t R{_meat.Price()}\n" + $"{_vegetation.VegetationClass()}\t\t\t R{_vegetation.Price()}\n" + $"{_cheese.CheeseClass()}\t\t R{_cheese.Price()}\n" + $"{_guacomole.GuacomoleClass()}\t\t R{_guacomole.Price()}\n" + $"{_rice.RiceClass()}\t\t R{_rice.Price()}\n" + $"{_beans.BeansClass()}\t\t R{_beans.Price()}\n" + $"{_creamCheese.CreamCheeseClass()}\t R{_creamCheese.Price()}\n" + $"{_tomato.TomatoClass()}\t\t\t R{_tomato.Price()}\n" + $"{_chili.ChiliClass()}\t R{_chili.Price()}\n"); }