public GamesController(IGamesServices games) { this.games = games; }
public GuessService(IGamesServices games, IRepository <Guess> guesses) { this.games = games; this.guesses = guesses; }