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