public IActionResult DeleteCounty(int countyId)
        {
            string error = _countyRepository.DeleteCounty(countyId);

            return(Ok(error));
        }