示例#1
0
        public Country FindCountrybyName(string selectedCountryName)
        {
            CountryRepository countryrepo = new CountryRepository();

            return(countryrepo.FindCountryByName(selectedCountryName));
        }