Пример #1
0
        // *** Constructors ***

        public OkraApplication(OkraBootstrapper bootstrapper)
        {
            if (bootstrapper == null)
                throw new ArgumentNullException(nameof(bootstrapper));

            _bootstrapper = bootstrapper;
            bootstrapper.Initialize(false);
        }
Пример #2
0
        // *** Constructors ***

        public OkraApplication(OkraBootstrapper bootstrapper)
        {
            if (bootstrapper == null)
            {
                throw new ArgumentNullException(nameof(bootstrapper));
            }

            _bootstrapper = bootstrapper;
            bootstrapper.Initialize(false);
        }
Пример #3
0
        // *** Constructors ***

        public OkraApplication(OkraBootstrapper bootstrapper)
        {
            this.bootstrapper = bootstrapper;
            bootstrapper.Initialize(false);
        }