Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/brinobruno/entities-c-sharp

University assignment - entity classes with C#
https://github.com/brinobruno/entities-c-sharp

Last synced: 1 day ago
JSON representation

University assignment - entity classes with C#

Awesome Lists containing this project

README

        

C# university assignment

*listar dependencies
- [X] Adapt to dependencies

Codificar classes de entidade

- [X] Cliente
id int
nome string
cpf long
email string
senha string
endereco Endereco

- [X] Carrinho
id int
dataPedido DateTime
valorTotal decimal
statusPedido int
cliente Cliente

- [X] Produto
id int
descricao string
preco decimal
imagem string
status string
vendedor Vendedor
categoria Categoria

- [X] Vendedor
id int
razaoSocial string
nomeFantasia string
cnpj string
email string
senha string
comissao decimal
endereco Endereco

Codificar a classe CarrinhoRepository

- [X] CarrinhoRepository
Adicionar(entidade: Carrinho): void
Atualizar(entidade: Carrinho): void
Excluir(entidade: Carrinho): void
ObterPorId(id: int): Carrinho
ObterTodos(): List

Note: update cart method done