Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var formatter = new Formatter();
            var helloPrinter = new Hello(formatter);

            helloPrinter.SayHelloToFriends(new[] { "Stan", "Scott", "John" });
        }
Exemplo n.º 2
0
 public Hello(Formatter formatter)
 {
     this.formatter = formatter;
 }