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