Ejemplo n.º 1
0
 public void RegisterDefaultImplementation(Type implementation, Type interfaceType)
 {
     _registry.RegisterDefaultImplementation(implementation, interfaceType);
 }
Ejemplo n.º 2
0
 /// <inheritdoc />
 public void RegisterDefaultImplementation <TInterface, TImplementation>() where TInterface : class where TImplementation : TInterface
 {
     _registry.RegisterDefaultImplementation(typeof(TImplementation), typeof(TInterface));
 }