public IActionResult List([FromQuery] string uf, [FromQuery] string terms) { IEnumerable <Cidade> cidades; if (!string.IsNullOrEmpty(terms)) { cidades = _cidadeService.Query(terms); } else if (!string.IsNullOrEmpty(uf)) { cidades = _cidadeService.ListByUf(uf); } else { cidades = _cidadeService.List(); } return(Ok(cidades)); }
public IEnumerable <CidadeDTO> List(Guid idestado, bool?soinativos = false) { return(service.List(idestado, soinativos)); }