Mercurial > pub > ImplabNet
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Implab.ServiceHost/Unity/AbstractInjectionParameter.cs Fri Jun 01 21:35:24 2018 +0300 @@ -0,0 +1,12 @@ +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); + } +} \ No newline at end of file