annotate Implab.ServiceHost/Unity/AbstractContainerItem.cs @ 277:963b17c275be
v3
Refactoring
Added <array> element to injection parameters
Working on registrations of factories
author |
cin |
date |
Sat, 28 Apr 2018 18:48:09 +0300 (2018-04-28) |
parents |
|
children |
|
rev |
line source |
277
|
1 namespace Implab.ServiceHost.Unity {
|
|
2
|
|
3 /// <summary>
|
|
4 /// Базовый класс для элеметов контейнера.
|
|
5 /// </summary>
|
|
6 /// <remarks>
|
|
7 /// XmlSerializer требует использования классов при объявлении свойств, которые будут сериализованы <see cref="ContainerElement.Items"/>
|
|
8 /// </remarks>
|
|
9 public abstract class AbstractContainerItem {
|
|
10 public abstract void Visit(ContainerBuilder builder);
|
|
11 }
|
|
12 } |