public ScopeFactory(ScopedScope scopedScope, SingletonScope singletonScope, TransientScope firstTransientScope, TransientScope secondTransientScope)
 {
     _scopedScope          = scopedScope;
     _singletonScope       = singletonScope;
     _firstTransientScope  = firstTransientScope;
     _secondTransientScope = secondTransientScope;
 }
 public IActionResult Get([FromServices] TransientScope x, [FromServices] TransientScope y)
 {
     return(GetScope(x, y));
 }