Skip to content

Instantly share code, notes, and snippets.

@ADCDS
Created October 17, 2016 15:07
Show Gist options
  • Save ADCDS/bbf7d3ce30349a4dc63c1cec1ef920d9 to your computer and use it in GitHub Desktop.
Save ADCDS/bbf7d3ce30349a4dc63c1cec1ef920d9 to your computer and use it in GitHub Desktop.
group: exericicios_slide2
agencia = {
nome_agencia:string, cidade_agencia:string, ativo:number
}
cliente = {
nome_cliente:string, rua_cliente:string, cidade_cliente:string
}
conta = {
numero_conta:number, nome_agencia:string, saldo:number
}
contaCliente = {
nome_cliente:string, numero_conta:number
}
emprestimo = {
numero_emprestimo:number, nome_agencia:string, quantia:number
}
emprestimoCliente = {
nome_cliente:string, numero_emprestimo:number
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment