Mercurial > pub > ImplabNet
view Implab.ServiceHost/Unity/IRegistration.cs @ 279:8714471e8d78 v3
Container configuration cleanup, RC2
author | cin |
---|---|
date | Fri, 04 May 2018 18:12:42 +0300 |
parents | 6691aff01de1 |
children |
line wrap: on
line source
using System; using Unity.Lifetime; namespace Implab.ServiceHost.Unity { public interface IRegistration { string Name { get; } Type GetRegistrationType(ContainerBuilder builder); LifetimeManager GetLifetime(ContainerBuilder builder); } }