From d79f33146cadbeb40b4138224f8ae4143032496b Mon Sep 17 00:00:00 2001 From: Simon G Date: Thu, 19 Nov 2020 13:38:22 +0100 Subject: [PATCH] #45: add register method to interface --- LightweightIocContainer/Interfaces/IIocContainer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LightweightIocContainer/Interfaces/IIocContainer.cs b/LightweightIocContainer/Interfaces/IIocContainer.cs index d4c1465..676e121 100644 --- a/LightweightIocContainer/Interfaces/IIocContainer.cs +++ b/LightweightIocContainer/Interfaces/IIocContainer.cs @@ -101,6 +101,8 @@ namespace LightweightIocContainer.Interfaces /// The created IMultitonRegistration RegisterMultiton() where TImplementation : TInterface; + IMultipleMultitonRegistration RegisterMultiton() where TImplementation : TInterface1, TInterface2; + /// /// Register an Interface as an abstract typed factory ///