Ejemplo n.º 1
0
 public HangmanGame(ICurrencyGenerator currencyGenerator, IAutomatedActionSystem automatedActionSystem,
                    IWordListProvider wordList)
 {
     _currencyGenerator     = currencyGenerator;
     _automatedActionSystem = automatedActionSystem;
     _wordList = wordList;
 }
Ejemplo n.º 2
0
 internal Colorer(ITextBuffer bufferToClassify,
     IClassificationTypeRegistryService classificationTypeRegistry,
     IWordListProvider wordListProviders)
 {
     _classificationTypeRegistry = classificationTypeRegistry;
 }
Ejemplo n.º 3
0
 public AnagramFinder(IWordListProvider wordListProvider,
                      IAnagramValidator anagramValidator)
 {
     this.WordListProvider = wordListProvider;
     this.AnagramValidator = anagramValidator;
 }