From bffcdabc0a125181d9126593cda83ef2e7c1cefe Mon Sep 17 00:00:00 2001 From: Leonel Toro Date: Fri, 27 Jun 2025 14:46:55 -0400 Subject: [PATCH] fix:se corrije inicializacion de la capa bll --- Integracion_DGA/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Integracion_DGA/Program.cs b/Integracion_DGA/Program.cs index 6aa0bdd..78fb31c 100644 --- a/Integracion_DGA/Program.cs +++ b/Integracion_DGA/Program.cs @@ -34,7 +34,7 @@ namespace Integracion_DGA var envioDGA = host.Services.GetRequiredService(); var bussinessLogic = host.Services.GetRequiredService(); var apiService = host.Services.GetRequiredService(); - var integracion_dga = bussinessLogic.Run(); + await bussinessLogic.Run(); var mediciones = await envioDGA.ObtenerMedicionesAsync(); } }