예제 #1
0
파일: Container.cs 프로젝트: doriswang/Test
        public static void Inject <T>(T existing) where T : class
        {
            Check.Argument.IsNotNull(existing, "existing");

            resolver.Inject <T>(existing.GetType().Name, existing, ObjectLifeSpans.Transient);
        }