From db8cb3e289eb81c60779244cbbeeeab0d6145469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20B=C3=B6rchers?= Date: Sun, 28 Jul 2019 22:33:31 +0200 Subject: [PATCH] added comments --- SmallInjector/IContainer.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/SmallInjector/IContainer.cs b/SmallInjector/IContainer.cs index ad4eb8a..1ad361c 100644 --- a/SmallInjector/IContainer.cs +++ b/SmallInjector/IContainer.cs @@ -42,7 +42,14 @@ namespace SmallInjector /// bool IsRegistered(Type serviceType); + /// + /// Resolve any implementation + /// IEnumerable ResolveAny(Type serviceType); + + /// + /// Resolve any implementation + /// IEnumerable ResolveAny(); } } \ No newline at end of file