private bool isInChampionship() { if (Championship == null) { return(false); } if (Athlete == null) { return(false); } return(Athlete.inChampionship(Championship.Championship)); }