Revert "Feat: Reforma de unificación de bases de datos."

This reverts commit 32cf2ba74a.

# Conflicts:
#	Backend/MotoresArgentinosV2.API/Program.cs
This commit is contained in:
2026-02-12 11:07:43 -03:00
parent 8f0b9546d4
commit 0fcdf899e6
5 changed files with 47 additions and 20 deletions

View File

@@ -10,10 +10,10 @@ namespace MotoresArgentinosV2.Infrastructure.Services;
public class AvisosLegacyService : IAvisosLegacyService
{
private readonly EldiaDbContext _context;
private readonly InternetDbContext _context;
private readonly ILogger<AvisosLegacyService> _logger;
public AvisosLegacyService(EldiaDbContext context, ILogger<AvisosLegacyService> logger)
public AvisosLegacyService(InternetDbContext context, ILogger<AvisosLegacyService> logger)
{
_context = context;
_logger = logger;