AbstractInjectionParameter.cs
11 lines
| 325 B
| text/x-csharp
|
CSharpLexer
cin
|
r289 | using System; | |
using System.Xml.Serialization; | |||
namespace Implab.ServiceHost.Unity { | |||
public abstract class AbstractInjectionParameter : IInjectionParameter { | |||
[XmlAttribute("type")] | |||
public string TypeName { get; set; } | |||
public abstract void Visit(InjectionParameterBuilder builder); | |||
} | |||
} |