| 1234567891011121314151617181920 |
- using StructureMap;
- namespace Quadarax.Foundation.Infrastructure.Layers
- {
- public class GlobalLayer : Layer
- {
- protected GlobalLayer(string name) : base(name)
- {
- LayerType = LayerClassificationEnum.Global;
- }
- protected override void OnLayerRegistry()
- {
- }
- protected override void OnModuleRegistry(IContainer container)
- {
- }
- }
- }
|