Mercurial > pub > ImplabNet
diff Implab.ServiceHost/Unity/RegistrationBuilder.cs @ 274:22629bf26121 v3
Unity xml configuration, alpha2
author | cin |
---|---|
date | Fri, 27 Apr 2018 04:47:52 +0300 |
parents | |
children | 963b17c275be |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Implab.ServiceHost/Unity/RegistrationBuilder.cs Fri Apr 27 04:47:52 2018 +0300 @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Xml.Serialization; +using Implab.Xml; +using Unity.Injection; +using Unity.Registration; + +namespace Implab.ServiceHost.Unity { + public abstract class RegistrationBuilder { + public Type RegistrationType { + get; + private set; + } + + protected RegistrationBuilder(Type registrationType) { + RegistrationType = registrationType; + } + } +} \ No newline at end of file