using System; using Unity.Lifetime; namespace Implab.ServiceHost.Unity { public interface IRegistration { string Name { get; } Type GetRegistrationType(ContainerBuilder builder); LifetimeManager GetLifetime(ContainerBuilder builder); } }