コード例 #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);
        }