InstanceRegistrationBuilder.cs
12 lines
| 420 B
| text/x-csharp
|
CSharpLexer
|
|
r277 | using System; | |
| namespace Implab.ServiceHost.Unity | |||
| { | |||
| public class InstanceRegistrationBuilder : RegistrationBuilder { | |||
| public InjectionValueBuilder ValueBuilder { get; private set; } | |||
| internal InstanceRegistrationBuilder(TypeResolver typeResolver, Type registrationType) : base(registrationType) { | |||
| ValueBuilder = new InjectionValueBuilder(typeResolver, registrationType); | |||
| } | |||
| } | |||
| } |
