Ejemplo n.º 1
0
 public GameSettingController(IUriService uriService, GameSettingRepository repo) : base(uriService)
 {
     _repo = repo;
 }
Ejemplo n.º 2
0
 public AuthController(IAuthRepository repo, IUriService uriService, GameSettingRepository gameRepo) : base(uriService)
 {
     _repo     = repo;
     _gameRepo = gameRepo;
 }