Example #1
0
        public Country FindCountrybyId(int selectedCountryId)
        {
            CountryRepository countryrepo = new CountryRepository();

            return(countryrepo.FindByID(selectedCountryId));
        }