Ejemplo n.º 1
0
        public ExtentStorageLoader(ExtentStorageData data, IConfigurationToExtentStorageMapper map, IDataLayerLogic dataLayerLogic)
        {
            Debug.Assert(map != null, "map != null");
            Debug.Assert(data != null, "data != null");
            Debug.Assert(dataLayerLogic != null, "dataLayerLogic != null");

            _data = data;
            _map = map;
            _dataLayerLogic = dataLayerLogic;
        }
Ejemplo n.º 2
0
 public ExtentStorageLoader(
     ExtentStorageData data,
     IConfigurationToExtentStorageMapper map,
     IDataLayerLogic dataLayerLogic,
     IWorkspaceCollection workspaceCollection,
     ILifetimeScope diScope
     )
     : this(data, map, dataLayerLogic)
 {
     Debug.Assert(workspaceCollection != null, "collection != null");
     _workspaceCollection = workspaceCollection;
     _diScope = diScope;
 }