예제 #1
0
파일: Program.cs 프로젝트: markgossa/MyIoC
        private static void Main(string[] args)
        {
            RegisterServices();
            var greetingService = _container.GetService <IGreetingService>();

            greetingService.DisplayGreeting("Mark");
        }
예제 #2
0
 public void ThrowsIfTypeNotRegistered() => Assert.Throws <ApplicationException>(() => _sut.GetService <IEngine>());