Ejemplo n.º 1
0
        public IActionResult GetCountyList(int countryID)
        {
            BindingList <CountyModel> counties = _countyRepository.GetCountyList(countryID);

            return(Ok(counties));
        }