static void Main(string[] args) { var testRunner = new TestRunner(); CompositionServices.ComposeParts(testRunner); testRunner.RunTests(); }
static void Main(string[] args) { var duck = new Duck(); CompositionServices.ComposeParts(duck); duck.MakeSound(); Console.Read(); }