Ejemplo n.º 1
0
        public void PrintHelloWorldBold()
        {
            string text = getTextClass.GetHelloWorldBold();  // get the text from the concrete impl. of text getter

            WriteToDB(text);                                 //write the text out to the db
        }
Ejemplo n.º 2
0
        public void PrintHelloWorldBold()
        {
            string text = getTextClass.GetHelloWorldBold(); // get the text from the concrete impl. of text getter

            Console.WriteLine(text);                        //print out to console
        }