Example #1
0
 public LeaderboardService(GameResultRepository repository)
 {
     this._repository = repository;
 }
 // DI in constructor
 public GameResultService(GameResultRepository repository)
 {
     this._repository = repository;
 }
 public GameResultController()
 {
     gameResultRepository = new GameResultRepository(Context);
     userRepository       = new UserRepository(Context);
 }