public HighScoreApiController(IHighScoreOrchestrator highScoreOrchestrator)
 {
     _highScoreOrchestrator = highScoreOrchestrator;
 }
 public PersonOrchestrator(IYourHighScoreService yourHighScoreService, IHighScoreOrchestrator highScoreOrchestrator)
 {
     _gamesContext          = new GamesContext();
     _yourHighScoreService  = yourHighScoreService;
     _highScoreOrchestrator = highScoreOrchestrator;
 }