public async Task <ActionResult <Country> > DeleteCountry(int id)
        {
            var country = await _countries.DeleteCountry(id);

            if (country == null)
            {
                return(NotFound());
            }

            return(country);
        }