IRegistration.cs
11 lines
| 280 B
| text/x-csharp
|
CSharpLexer
cin
|
r278 | using System; | |
using Unity.Lifetime; | |||
namespace Implab.ServiceHost.Unity { | |||
public interface IRegistration { | |||
string Name { get; } | |||
Type GetRegistrationType(ContainerBuilder builder); | |||
LifetimeManager GetLifetime(ContainerBuilder builder); | |||
} | |||
} |