コード例 #1
0
        public UserController(IUserRepositoryProxy proxy, IBootStrapper bootstrapper)
        {
            _proxy = proxy;
            _bootstrapper = bootstrapper;

            _bootstrapper.InitializeApplication();
        }
コード例 #2
0
        public UserController()
        {
            _proxy = new UserRepositoryProxy();
            _bootstrapper = new BootStrapper();

            _bootstrapper.InitializeApplication();
        }