master
1using System.Collections.Generic;
2
3namespace Notepad.Infrastructure.Container {
4    public interface IDependencyRegistry {
5        Interface FindAnImplementationOf<Interface>();
6        IEnumerable<Interface> AllImplementationsOf<Interface>();
7    }
8}