Exemple #1
0
 public LevelCreator(InWordsDataContext context)
 {
     userWordPairRepository  = new UserWordPairRepository(context);
     creationRepository      = new CreationRepository(context);
     gameLevelRepository     = new GameLevelRepository(context);
     gameLevelWordRepository = new GameLevelWordRepository(context);
 }
Exemple #2
0
 public GameLevelService(GameLevelRepository gameLevelRepository,
                         GameLevelWordService gameLevelWordService)
 {
     this.gameLevelRepository  = gameLevelRepository;
     this.gameLevelWordService = gameLevelWordService;
 }