예제 #1
0
        public async Task <IActionResult> Index(int id)
        {
            var country = await countryRepository.CountryByIdAsync(id);

            return(View(country));
        }