public IActionResult CheckExistingGameIsComplete()
 {
     return(Ok(!_bowlingGame.Contestants.Any() || _bowlingGame.IsGameComplete()));
 }