Created
April 27, 2017 21:18
-
-
Save sidneydemoraes/dc807e78a5b6dd720c89fe5c2a4d701b to your computer and use it in GitHub Desktop.
TechTalk - Gradle + Spring Boot + Groovy - Acesso aos Dados com Groovy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private InsumosDeAnalise obterInsumos(Busca busca) { | |
final def coordenada = new Coordenada(busca.latitude, busca.longitude) | |
final def setoresCensitariosSelecionados = geografo.obterSetoresDentroDoRaio(coordenada, config.raioEmKm) | |
final def cnaesSelecionados = comercial.obterAtividadesComerciais(busca.atividadeId) | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment