Ejemplo n.º 1
0
 public ExtentController(
     IFactoryMapper mapper,
     IWorkspaceCollection workspaceCollection,
     IUmlNameResolution resolution,
     IExtentStorageLoader extentStorageLoader,
     IDataLayerLogic dataLayerLogic,
     ColumnCreator columnCreator,
     ExtentFunctions extentFunctions,
     ILifetimeScope diScope)
 {
     _mapper = mapper;
     _workspaceCollection = workspaceCollection;
     _resolution = resolution;
     _extentStorageLoader = extentStorageLoader;
     _dataLayerLogic = dataLayerLogic;
     _columnCreator = columnCreator;
     _extentFunctions = extentFunctions;
     _diScope = diScope;
 }
Ejemplo n.º 2
0
 public ColumnCreator(IUmlNameResolution nameResolution, IDataLayerLogic dataLayerLogic, IWorkspaceCollection workspaceCollection)
 {
     _nameResolution = nameResolution;
     _dataLayerLogic = dataLayerLogic;
     _workspaceCollection = workspaceCollection;
 }