Skip to content

Commit 1063149

Browse files
committed
refactor: padronização de código, performance e correções
- Padronização de nomes de variáveis/parâmetros para inglês, mantendo termos do glossário (Ticker, Cesta, Cotação, Pregão, Aporte, Custódia, Resíduo, Distribuição, etc.) - Performance: substituição de LINQ por loops explícitos em trechos críticos (CotacaoAppService, ExecutarCompraProgramadaService, ExecutarRebalanceamentoService, CestaAppService, ClienteAppService, CestaRepository, VendaRebalanceamentoRepository, MotorController, CotacaoRepository) para evitar gargalos com grandes volumes - Teste: inclusão de ILogger no construtor de ExecutarCompraProgramadaServiceTests - ClientesController: correção de avisos CS8602 (checagem de request nulo) - Add gitignore
1 parent 26ff5b9 commit 1063149

File tree

639 files changed

+9823
-28864
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

639 files changed

+9823
-28864
lines changed

.gitignore

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# Build
2+
[Bb]in/
3+
[Oo]bj/
4+
[Ll]og/
5+
[Ll]ogs/
6+
[Dd]ebug/
7+
[Rr]elease/
8+
x64/
9+
x86/
10+
[Aa][Rr][Mm]/
11+
[Aa][Rr][Mm]64/
12+
bld/
13+
[Bb]uild/
14+
[Oo]ut/
15+
16+
# Visual Studio
17+
.vs/
18+
*.user
19+
*.userosscache
20+
*.sln.docstates
21+
22+
# Rider
23+
.idea/
24+
*.sln.iml
25+
26+
# VS Code
27+
.vscode/
28+
!.vscode/settings.json
29+
!.vscode/tasks.json
30+
!.vscode/launch.json
31+
!.vscode/extensions.json
32+
*.code-workspace
33+
34+
# Test results and coverage
35+
[Tt]est[Rr]esults/
36+
[Cc]overage/
37+
*.trx
38+
*.coverage
39+
*.coveragexml
40+
coverage*.xml
41+
*.opencover.xml
42+
*.Cobertura.xml
43+
44+
# NuGet
45+
*.nupkg
46+
*.snupkg
47+
**/[Pp]ackages/*
48+
!**/[Pp]ackages/build/
49+
project.lock.json
50+
project.fragment.lock.json
51+
artifacts/
52+
53+
# .NET (bin/obj já cobre a maioria; pdb/cache abaixo)
54+
*.userprefs
55+
*.suo
56+
*.user
57+
*.sln.docstates
58+
59+
# Docker
60+
.docker/
61+
62+
# OS
63+
.DS_Store
64+
Thumbs.db
65+
*:Zone.Identifier
66+
*.lnk
67+
68+
# Dados locais / COTAHIST (arquivos baixados)
69+
cotacoes/*.TXT
70+
cotacoes/*.txt
71+
!cotacoes/.gitkeep
72+
73+
# Secrets
74+
*.pfx
75+
appsettings.*.local.json
76+
.env
77+
.env.local
78+
.env.*.local
79+
80+
# Misc
81+
*.bak
82+
*.tmp
83+
*.temp
84+
*.swp
85+
*~

src/ApiGateway/obj/Debug/net9.0/ApiGateway.MvcApplicationPartsAssemblyInfo.cache renamed to cotacoes/.gitkeep

File renamed without changes.
-73.2 KB
Binary file not shown.

src/ApiGateway/bin/Debug/net9.0/ApiGateway.deps.json

Lines changed: 0 additions & 93 deletions
This file was deleted.
-5.5 KB
Binary file not shown.
-20.3 KB
Binary file not shown.

src/ApiGateway/bin/Debug/net9.0/ApiGateway.runtimeconfig.json

Lines changed: 0 additions & 19 deletions
This file was deleted.

src/ApiGateway/bin/Debug/net9.0/ApiGateway.staticwebassets.endpoints.json

Lines changed: 0 additions & 5 deletions
This file was deleted.
-191 KB
Binary file not shown.
-233 KB
Binary file not shown.

0 commit comments

Comments
 (0)