using System.Collections.Generic; namespace common { public interface DependencyRegistry { T get_a(); IEnumerable get_all(); } }