static void Main(string[] args) { var a = new Coffee(); var b = new Tea(); a.prepareRecipe(); b.prepareRecipe(); Console.ReadKey(); }
static void Main(string[] args) { Tea MyTea = new Tea(); MyTea.PrepareRecipe(); }