Esempio n. 1
0
        public bool ParticipantLivesInEU(Participant participant)
        {
            CountryManager countryManager = CountryManager.GetInstance();
            string         countryCode    = participant.CountryCode;

            return(countryManager.CountryIsEUCountry(countryCode));
        }