Ejemplo n.º 1
0
        public DefaultLifetimeScopeProvider(ILifetimeScopeAccessor accessor)
        {
            Guard.ArgumentNotNull(() => accessor);

            this._accessor = accessor;
            AutofacRequestLifetimeHttpModule.SetLifetimeScopeProvider(this);
        }
Ejemplo n.º 2
0
        public AutofacLifetimeScopeProvider(ILifetimeScope container)
        {
            Guard.ArgumentNotNull(() => container);

            this._container = container;
            AutofacRequestLifetimeHttpModule.SetLifetimeScopeProvider(this);
        }