using System.Collections.Generic; namespace Notepad.Infrastructure.Container { public interface IDependencyRegistry { Interface FindAnImplementationOf(); IEnumerable AllImplementationsOf(); } }