Example #1
0
 public GameController(GameRepository gameRepository)
 {
     this.db = gameRepository;
 }
Example #2
0
 public GameController()
 {
     this.db = new GameRepository(new AppDataContext());
 }