public RhetosWorkspace(RhetosDocumentFactory rhetosDocumentFactory, RhetosProjectContext rhetosProjectContext, ILogger <RhetosWorkspace> log, ILoggerFactory logFactory)
 {
     this.log                   = log;
     this.logFactory            = logFactory;
     this.rhetosDocumentFactory = rhetosDocumentFactory;
     this.rhetosProjectContext  = rhetosProjectContext;
 }
Exemple #2
0
 public RhetosDocumentFactory(RhetosProjectContext rhetosProjectContext, ConceptQueries conceptQueries, IRhetosProjectRootPathResolver rhetosProjectRootPathResolver,
                              ILoggerFactory logFactory)
 {
     this.rhetosProjectContext          = rhetosProjectContext;
     this.conceptQueries                = conceptQueries;
     this.rhetosProjectRootPathResolver = rhetosProjectRootPathResolver;
     this.logFactory = logFactory;
 }
 public ConceptQueries(RhetosProjectContext rhetosProjectContext)
 {
     this.rhetosProjectContext = rhetosProjectContext;
 }