Exemple #1
0
 private BDConfiguration DatoProduccion(string aplicacion)
 {
     mSigCom = new BDConfiguration
     {
         BaseDatos = "TRADISDB",
         Usuario   = "sa",
         Password  = "******",
         Servidor  = "localhost",
         Provider  = "SQL"
     };
     return(mSigCom);
 }
Exemple #2
0
 public ConfigTradisDB(string aplicacion)
 {
     try
     {
         mSigCom = new BDConfiguration();
         mSigCom = DatoProduccion(aplicacion);
     }
     catch
     {
         throw;
     }
 }