ITypeRegistration.cs
9 lines
| 281 B
| text/x-csharp
|
CSharpLexer
cin
|
r278 | using System; | |
using System.Collections.Generic; | |||
namespace Implab.ServiceHost.Unity { | |||
public interface ITypeRegistration : IRegistration { | |||
Type GetImplementationType(ContainerBuilder builder); | |||
IEnumerable<ITypeMemberInjection> MemberInjections { get; } | |||
} | |||
} |