Fixed composition.

This commit is contained in:
Taloth Saldono
2015-09-21 23:22:34 +02:00
parent 57afa668e1
commit 30bcc662bc
2 changed files with 4 additions and 2 deletions
@@ -54,6 +54,7 @@ namespace NzbDrone.Common.Composition
var factory = CreateSingletonImplementationFactory(implementation);
_container.Register(service, factory);
_container.Register(service, factory, implementation.FullName);
}
public IEnumerable<T> ResolveAll<T>() where T : class