Example #1
0
        static void Main()
        {
            var vocabularyTextParser = new VocabularyTextParser();
            var vocabularyRepository = new FileVocabularyRepository(vocabularyTextParser);

            Startup.Run(new ConsoleView(), vocabularyRepository);
        }
 public FileVocabularyRepository(VocabularyTextParser vocabularyTextParser)
 {
     _vocabularyTextParser = vocabularyTextParser;
 }