Ejemplo n.º 1
0
        public void PrintHelloWorldLight()
        {
            string text = getTextClass.GetHelloWorldLight(); // 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 PrintHelloWorldLight()
        {
            string text = getTextClass.GetHelloWorldLight();  // get the text from the concrete impl. of text getter

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