public IActionResult DeleteSubCounty(Guid id)
 {
     try
     {
         _subCountyRepository.Delete(id);
         return(NoContent());
     }
     catch (Exception e)
     {
         _logger.LogDebug($"{e}");
         return(StatusCode(500, "Not deleted !"));
     }
 }