AbstractMemberInjection.cs
9 lines
| 335 B
| text/x-csharp
|
CSharpLexer
|
|
r289 | using System; | |
| namespace Implab.ServiceHost.Unity { | |||
| /// <summary> | |||
| /// Base class for injections, each injection is applied to the type registration context. | |||
| /// </summary> | |||
| public abstract class AbstractMemberInjection : ITypeMemberInjection { | |||
| public abstract void Visit(TypeRegistrationBuilder builder); | |||
| } | |||
| } |
