using System; using System.Collections.Generic; namespace Implab.ServiceHost.Unity { public interface ITypeRegistration : IRegistration { Type GetImplementationType(ContainerBuilder builder); IEnumerable MemberInjections { get; } } }