Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samuel-oldra/poupadev.api
🟣 C# e .NET 6 (6ª ed.)
https://github.com/samuel-oldra/poupadev.api
aspnet-core clean-code csharp dependency-injection dotnet-core-webapi dotnet6 eager-loading entity-framework-core hosted-services inmemory-db migrations repository-pattern sqlite sqlserver swagger
Last synced: about 1 month ago
JSON representation
🟣 C# e .NET 6 (6ª ed.)
- Host: GitHub
- URL: https://github.com/samuel-oldra/poupadev.api
- Owner: samuel-oldra
- License: mit
- Created: 2021-11-16T14:01:22.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T19:22:22.000Z (about 2 months ago)
- Last Synced: 2024-09-17T00:34:23.438Z (about 2 months ago)
- Topics: aspnet-core, clean-code, csharp, dependency-injection, dotnet-core-webapi, dotnet6, eager-loading, entity-framework-core, hosted-services, inmemory-db, migrations, repository-pattern, sqlite, sqlserver, swagger
- Language: C#
- Homepage:
- Size: 113 KB
- Stars: 11
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
PoupaDev - Jornada .NET Direto ao Ponto
Tecnologias e práticas utilizadas •
Funcionalidades •
ComandosFoi desenvolvida uma API REST completa de gerenciamento de objetivos financeiros.
## Tecnologias e práticas utilizadas
- ASP.NET Core com .NET 6
- Entity Framework Core
- SQL Server / SQLite / In-Memory database
- Swagger (documentação)
- Programação Orientada a Objetos
- Injeção de Dependência
- Padrão Repository
- Hosted Services (tarefas em segundo plano)
- Clean Code
- Publicação## Funcionalidades
- Cadastro, Listagem, Detalhes de Objetivo Financeiro
- Saque e Depósito de Objetivo Financeiro
- Rendimento Automático###
![alt text](https://raw.githubusercontent.com/samuel-oldra/PoupaDev.API/main/README_IMGS/swagger_ui.png)
## Comandos
### Comandos básicos
```
dotnet new gitignore
dotnet new webapi -o PoupaDev.API
dotnet new console -o PoupaDev.Consoledotnet build
dotnet run
dotnet watch rundotnet publish
```### Tool Entity Framework Core (migrations)
```
dotnet tool install --global dotnet-ef
dotnet tool uninstall --global dotnet-ef
```### Migrations
```
dotnet ef migrations add InitialMigration -o Persistence/Migrations
dotnet ef database update
```