From 120d2832f481a75584f0d462b8f7865b57c8a75f Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 16 Dec 2025 13:12:31 +0100 Subject: [PATCH] =?UTF-8?q?Se=20a=C3=B1ade=20conexion=20de=20desarrollo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bdAsegasa/dbcontext/conexion.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/bdAsegasa/dbcontext/conexion.cs b/bdAsegasa/dbcontext/conexion.cs index a7f575e..d74fa35 100644 --- a/bdAsegasa/dbcontext/conexion.cs +++ b/bdAsegasa/dbcontext/conexion.cs @@ -24,6 +24,7 @@ namespace bdtsFactu.dbcontext { List lc = new List(); lc.Add(new Conexion() { Nombre = "Producción", Servidor = "192.168.61.201", Puerto = 30002, Usuario = "asegasa", Contraseña = "tk-8Vb/#%+2ÄM", Database = "gestionasegasa" }); + lc.Add(new Conexion() { Nombre = "Desarrollo", Servidor = "192.168.41.26", Puerto = 3307, Usuario = "asegasa", Contraseña = "tk-8Vb/#%+2ÄM", Database = "gestionasegasa" }); lc.Add(new Conexion() { Nombre = "Producción Remoto", Servidor = "sevilla.asegasa.com", Puerto = 30002, Usuario = "asegasa", Contraseña = "tk-8Vb/#%+2ÄM", Database = "gestionasegasa" }); return lc; }