public IActionResult Get(string id)
        {
            var wards = _baseService.GetByDistrictId(id);

            return(Ok(wards));
        }