public IActionResult GetSubCounties(int countyId)
        {
            var c = _subCountyRepository.GetByCounty(countyId);

            if (null != c)
            {
                return(Ok(c));
            }
            _logger.LogError($"county {countyId} Not Found!");

            return(NotFound());
        }