Beispiel #1
0
 public ClassifierController(ServiceQuery serviceQuery, ClassifierServiceHandler classifierHandler, ProcessHandler processHandler,
                             IQueryFactory queryFactory, IGlobalStoreManager globalStore)
 {
     GlobalStore            = globalStore;
     this.queryFactory      = queryFactory;
     this.processHandler    = processHandler;
     this.classifierHandler = classifierHandler;
     this.serviceQuery      = serviceQuery;
 }
 public SearchController(ServiceQuery serviceQuery, SearchServiceHandler searchHandler, ProcessHandler processHandler,
                         IQueryFactory queryFactory, IGlobalStoreManager globalStore, ServiceManager serviceManager, IDocumentService documentService,
                         ClassifierServiceHandler classifierHandler)
 {
     GlobalStore            = globalStore;
     this.queryFactory      = queryFactory;
     this.processHandler    = processHandler;
     this.searchHandler     = searchHandler;
     this.serviceQuery      = serviceQuery;
     this.serviceManager    = serviceManager;
     this.documentService   = documentService;
     this.classifierHandler = classifierHandler;
 }