Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/AbstractInjectionParameter.cs @ 281:e0916ddc9950 v3 tip
code cleanup and refactoring
author | cin |
---|---|
date | Fri, 01 Jun 2018 21:35:24 +0300 |
parents | |
children |
rev | line source |
---|---|
281 | 1 using System; |
2 using System.Xml.Serialization; | |
3 | |
4 namespace Implab.ServiceHost.Unity { | |
5 public abstract class AbstractInjectionParameter : IInjectionParameter { | |
6 | |
7 [XmlAttribute("type")] | |
8 public string TypeName { get; set; } | |
9 | |
10 public abstract void Visit(InjectionParameterBuilder builder); | |
11 } | |
12 } |