public void Dispose()
        {
            var scope = PerWebRequestLifestyleModule.DetachScope();

            if (scope != null)
            {
                scope.Dispose();
            }
        }
 public ILifetimeScope GetScope(CreationContext context)
 {
     return(PerWebRequestLifestyleModule.AttachScope());
 }