예제 #1
0
파일: Program.cs 프로젝트: eugeni96/ASP.NET
        static void Main(string[] args)
        {
            AppKernel = new StandardKernel(new WeaponNinjectModule());

            var warrior = AppKernel.Get<Warrior>();

            warrior.Kill();

            var otherWarrior = new OtherWarrior();

            otherWarrior.Kill();

            Console.ReadLine();
        }
예제 #2
0
        static void Main(string[] args)
        {
            AppKernel = new StandardKernel(new WeaponNinjectModule());

            var warrior = AppKernel.Get <Warrior>();

            warrior.Kill();

            var otherWarrior = new OtherWarrior();

            otherWarrior.Kill();

            Console.ReadLine();
        }