예제 #1
0
 public ActiveGamesController()
 {
     this._activeGameRepository = new ActiveGameRepository();
 }
예제 #2
0
 public ActiveGamesController(IActiveGameRepository ActiveGameRepository)
 {
     this._activeGameRepository = ActiveGameRepository;
 }