Exemplo n.º 1
0
        static void ContainerTest()
        {
            var container = ContainerConfig.Configure();

            using (var scope = container.BeginLifetimeScope())
            {
                var app = scope.Resolve <IApplication>();
                app.Run();
            }
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            var container = ContainerConfig.Configure();

            using (var scope = container.BeginLifetimeScope()) {
                var app = scope.Resolve <IApplication>();
                app.Run();
            }

            Console.ReadLine();
        }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            IContainer container = ContainerConfig.Configure();

            using (ILifetimeScope scope = container.BeginLifetimeScope())
            {
                Engine app = scope.Resolve <Engine>();
                app.Run();
            }
            Console.ReadLine();
        }