public UploadDocumentService(IMongoDatabase mongoDatabase, IStorage storage, IConvertToTxt converter, ITextParserService convenantsSearch)
 {
     this.mongoDatabase    = mongoDatabase;
     this.storage          = storage;
     this.converter        = converter;
     this.convenantsSearch = convenantsSearch;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RegexTests"/> class.
 /// </summary>
 public RegexTests()
 {
     this.textParserService = new TextParserService(new WordsPercentageMatchCovenantSearchStrategy());
 }
Пример #3
0
 public TextParser(ITextParserService service)
 {
     Service = service;
 }
Пример #4
0
 public TextController(ITextParserService textParserService)
 {
     this.textParserService = textParserService;
 }
Пример #5
0
 public MainPresenter(IVoiceActivity activity, ITextParserService parserService) : base(activity)
 {
     _parser = new TextParser(parserService);
 }