예제 #1
0
파일: IocMaker.cs 프로젝트: sjjhunt/ioc
        public static IIoc NewIoc()
        {
            var result = new WindsorIoc();

            result.BuildContainer();

            return(result);
        }
예제 #2
0
파일: IocMaker.cs 프로젝트: sjjhunt/ioc
        public static IIoc NewIocWith(IIocRegister iocRegister)
        {
            var result = new WindsorIoc();

            result.BuildContainer();

            iocRegister.RegisterMappings(result);

            return(result);
        }
예제 #3
0
파일: IocMaker.cs 프로젝트: sjjhunt/ioc
        public static IIoc NewIocWith(IList <IIocRegister> iocRegisters)
        {
            var result = new WindsorIoc();

            result.BuildContainer();

            foreach (var iocRegister in iocRegisters)
            {
                iocRegister.RegisterMappings(result);
            }

            return(result);
        }