trading-platform-backend-v2/src/modules/investment/repositories/index.ts
Adrian Flores Cortes 3df1ed1f94 [OQI-004] feat: Migrate investment services to PostgreSQL repositories
- account.service.ts: Now uses accountRepository instead of in-memory Map
- transaction.service.ts: Now uses transactionRepository for transactions
- Added account.repository.ts with full CRUD and balance operations
- Added transaction.repository.ts with query, create, and update operations
- Withdrawal and distribution entities still use in-memory storage

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-25 07:44:07 -06:00

7 lines
124 B
TypeScript

/**
* Investment Repositories - Index
*/
export * from './account.repository';
export * from './transaction.repository';