Skip to content

Commit

Permalink
Create classes-escritas.md
Browse files Browse the repository at this point in the history
  • Loading branch information
raulfdm authored Oct 25, 2016
1 parent 59a0439 commit 4c4edc7
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions Files/UML/classes-escritas.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@


## Pessoa
```
Pessoa
--
- id: string
- cep: number
- endereco: string
- numeroEndereco: number
- complemento: string
- telefone: string
- celular: string
--
```

## Fornecedor
```
Fornecedor
--
- cnpj: string
- razaoSocial: string
--
```

## Cliente
```
Cliente
--
- nomeCompleto: string
- cpf: string
- dataNascimento: date
--
```

## Pedido

```
Pedido
--
- idvendedor: string
- idpedido: string
- produtos: Array
- data: Date
--
+ totalPedido(): Number
+ listaProdutos(): Array
```

```
Pedido de venda
--
- idcliente: string
```

```
Pedido de Compra
--
- idfornecedor: string
```

0 comments on commit 4c4edc7

Please sign in to comment.