Exemplo n.º 1
0
 public WordsController(IEnglishDictionaryService englishDictionaryService)
 {
     if (_englishDictionaryService == null)
     {
         _englishDictionaryService = englishDictionaryService;
         _englishDictionaryService.Initialize();
     }
 }
Exemplo n.º 2
0
 public GameService(IEnglishDictionaryService englishDictionaryService)
 {
     _englishDictionaryService = englishDictionaryService;
 }
Exemplo n.º 3
0
 public Board2(string boardDefinition, IEnglishDictionaryService englishDictionaryService)
 {
     _boardDefinition          = boardDefinition;
     _englishDictionaryService = englishDictionaryService;
 }
Exemplo n.º 4
0
 public Board(string boardDefinition, IEnglishDictionaryService englishDictionaryService)
 {
     _boardDefinition          = boardDefinition;
     _englishDictionaryService = englishDictionaryService;
     _tiles = new List <Tile>();
 }