#45: add register method to interface

pull/47/head
Simon G 5 years ago
parent 9c99ba2682
commit d79f33146c
  1. 2
      LightweightIocContainer/Interfaces/IIocContainer.cs

@ -101,6 +101,8 @@ namespace LightweightIocContainer.Interfaces
/// <returns>The created <see cref="IRegistration"/></returns>
IMultitonRegistration<TInterface, TImplementation> RegisterMultiton<TInterface, TImplementation, TScope>() where TImplementation : TInterface;
IMultipleMultitonRegistration<TInterface1, TInterface2, TImplementation> RegisterMultiton<TInterface1, TInterface2, TImplementation, TScope>() where TImplementation : TInterface1, TInterface2;
/// <summary>
/// Register an Interface as an abstract typed factory
/// </summary>

Loading…
Cancel
Save