public LoaderFile(WordDbContext wordDbContext, IParserAdapter parserAdapter, IAiParser aiParser, IDataBaseMain dataBaseMain)
 {
     _wordDbContext = wordDbContext;
     _parserAdapter = parserAdapter;
     _aiParser      = aiParser;
     _dataBaseMain  = dataBaseMain;
     _pathDoc       = Path.Combine(GlobalSettingsApp.CurrentAppDirectory, "Documents");
 }
Beispiel #2
0
 public DocumentLoaderController(ILoaderFile loaderFile, IParserAdapter parserAdapter) : base(ModuleName)
 {
     _loaderFile    = loaderFile;
     _parserAdapter = parserAdapter;
 }