Ejemplo n.º 1
0
        private bool isInChampionship()
        {
            if (Championship == null)
            {
                return(false);
            }

            if (Athlete == null)
            {
                return(false);
            }

            return(Athlete.inChampionship(Championship.Championship));
        }