##// END OF EJS Templates
Working on Implab.Diagnostics
Working on Implab.Diagnostics

File last commit:

r278:6691aff01de1 v3
r286:67ebcfd7d1c8 v3
Show More
IRegistration.cs
11 lines | 280 B | text/x-csharp | CSharpLexer
using System;
using Unity.Lifetime;
namespace Implab.ServiceHost.Unity {
public interface IRegistration {
string Name { get; }
Type GetRegistrationType(ContainerBuilder builder);
LifetimeManager GetLifetime(ContainerBuilder builder);
}
}