added comments

This commit is contained in:
Holger Börchers 2019-07-28 22:33:31 +02:00
parent 6e5c5452df
commit db8cb3e289

View File

@ -42,7 +42,14 @@ namespace SmallInjector
/// </summary>
bool IsRegistered(Type serviceType);
/// <summary>
/// Resolve any implementation
/// </summary>
IEnumerable<object> ResolveAny(Type serviceType);
/// <summary>
/// Resolve any implementation
/// </summary>
IEnumerable<object> ResolveAny<TService>();
}
}