public DataModelDataContext(IXmlFileSerializationHelper xmlFileSerializationHelper,
     IGetPathToDataDirectoryService getPathToDataDirectoryService)
 {
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
     this.xmlFileSerializationHelper = xmlFileSerializationHelper;
     this.applicationSettingsValueGetter = applicationSettingsValueGetter;
 }
 public ContentTreeCacheImplementation(ITreeNodeRepository treeNodeRepository, 
     IContentTreeNodeProviderContext contentTreeNodeProviderContext,
     ICommandBus commandBus,
     IGuidGetter guidGetter,
     IGetPathToDataDirectoryService getPathToDataDirectoryService)
     : base(treeNodeRepository, contentTreeNodeProviderContext, commandBus, guidGetter)
 {
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
 }
 public ContentTreeSectionNodeRepository(IDataModelDataContext dataModelDataContext, ITreeNodeRepository treeNodeRepository,
     ISectionNodeProviderDraftToContentTreeSectionNodeMapper sectionNodeProviderDraftToContentTreeSectionNodeMapper,
     IGetPathToDataDirectoryService getPathToDataDirectoryService)
 {
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
     this.sectionNodeProviderDraftToContentTreeSectionNodeMapper = sectionNodeProviderDraftToContentTreeSectionNodeMapper;
     this.treeNodeRepository = treeNodeRepository;
     this.dataModelDataContext = dataModelDataContext;
 }
 public GetDataPathForType(IGetPathToDataDirectoryService getPathToDataDirectoryService)
 {
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
 }
Exemplo n.º 5
0
 public TreeNodeRepository(IDataModelDataContext dataModelDataContext, IGetPathToDataDirectoryService getPathToDataDirectoryService)
 {
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
     this.dataModelDataContext = dataModelDataContext;
 }
Exemplo n.º 6
0
 public TreeNodeRepository(IDatabaseRetriever databaseRetriever,
     IGetPathToDataDirectoryService getPathToDataDirectoryService)
 {
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
     this.databaseRetriever = databaseRetriever;
 }
Exemplo n.º 7
0
 public DataModelDataContext(IXmlFileSerializationHelper xmlFileSerializationHelper,
     IGetPathToDataDirectoryService getPathToDataDirectoryService)
 {
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
     this.xmlFileSerializationHelper = xmlFileSerializationHelper;
 }
 public ContentNodeProviderDraftRepository(IDatabaseRetriever databaseRetriever, IGetPathToDataDirectoryService getPathToDataDirectoryService)
 {
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
     this.databaseRetriever = databaseRetriever;
 }
 public DataModelDataContext(IDatabaseRetriever databaseRetriever, 
     IGetPathToDataDirectoryService getPathToDataDirectoryService)
 {
     this.databaseRetriever = databaseRetriever;
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
 }
Exemplo n.º 10
0
 public GetDataPathForType(IGetPathToDataDirectoryService getPathToDataDirectoryService)
 {
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
 }
 public ContentNodeProviderPublishedVersionRepository(IDataModelDataContext dataModelDataContext,
     IGetPathToDataDirectoryService getPathToDataDirectoryService)
 {
     this.getPathToDataDirectoryService = getPathToDataDirectoryService;
     this.dataModelDataContext = dataModelDataContext;
 }