private ChildLifetimeScope(Kernel kernel, RootLifetimeScope rootScope, ChildLifetimeScope parentScope)
     : base(kernel, parentScope)
 {
     _rootScope = rootScope;
 }
 public ChildLifetimeScope(Kernel kernel, RootLifetimeScope rootScope)
     : base(kernel, rootScope)
 {
     _rootScope = rootScope;
 }