annotate Implab.ServiceHost/Unity/AbstractMemberInjection.cs @ 277:963b17c275be
v3
Refactoring
Added <array> element to injection parameters
Working on registrations of factories
rev |
line source |
272
|
1 using System;
|
|
2
|
274
|
3 namespace Implab.ServiceHost.Unity {
|
|
4 /// <summary>
|
|
5 /// Base class for injections, each injection is applied to the type registration context.
|
|
6 /// </summary>
|
277
|
7 public abstract class AbstractMemberInjection {
|
274
|
8 internal abstract void Visit(TypeRegistrationBuilder context);
|
270
|
9 }
|
|
10 } |