annotate Implab.ServiceHost/Unity/InstanceRegistrationBuilder.cs @ 277:963b17c275be
v3
Refactoring
Added <array> element to injection parameters
Working on registrations of factories
author |
cin |
date |
Sat, 28 Apr 2018 18:48:09 +0300 |
parents |
|
children |
6691aff01de1 |
rev |
line source |
277
|
1 using System;
|
|
2
|
|
3 namespace Implab.ServiceHost.Unity
|
|
4 {
|
|
5 public class InstanceRegistrationBuilder : RegistrationBuilder {
|
|
6
|
|
7 public InjectionValueBuilder ValueBuilder { get; private set; }
|
|
8
|
|
9 internal InstanceRegistrationBuilder(TypeResolver typeResolver, Type registrationType) : base(registrationType) {
|
|
10 ValueBuilder = new InjectionValueBuilder(typeResolver, registrationType);
|
|
11 }
|
|
12 }
|
|
13 } |