Mercurial > pub > ImplabNet
annotate 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 |
| rev | line source |
|---|---|
| 274 | 1 using System; |
| 2 using System.Collections.Generic; | |
| 3 using System.ComponentModel; | |
| 4 using System.Linq; | |
| 5 using System.Xml.Serialization; | |
| 6 using Implab.Xml; | |
| 7 using Unity.Injection; | |
| 8 using Unity.Registration; | |
| 9 | |
| 10 namespace Implab.ServiceHost.Unity { | |
| 11 public abstract class RegistrationBuilder { | |
| 12 public Type RegistrationType { | |
| 13 get; | |
| 14 private set; | |
| 15 } | |
| 16 | |
| 17 protected RegistrationBuilder(Type registrationType) { | |
| 18 RegistrationType = registrationType; | |
| 19 } | |
| 20 } | |
| 21 } |
