Exemplo n.º 1
0
 public CustomScopeValueBinder(
     BindScope owner,
     DiContainer container)
     : base(container)
 {
     _owner = owner;
 }
Exemplo n.º 2
0
 public CustomScopeReferenceBinder(
     BindScope owner,
     DiContainer container, SingletonProviderMap singletonMap)
     : base(container, singletonMap)
 {
     _owner = owner;
 }
Exemplo n.º 3
0
 public CustomScopeUntypedBinder(
     BindScope owner, Type contractType,
     DiContainer container, SingletonProviderMap singletonMap)
     : base(container, contractType, singletonMap)
 {
     _owner = owner;
 }