}        //Fin Metodo Conectar(...)

        private void Desconectar(SqlCommand oCommand = null)
        {
            try
            {
                if (oCommand == null)
                {
                    oCommand = _command;
                }

                LBSSqlConnection oLbsSql = LBSSqlConnection.GetInstance(_LstConexion, oCommand.Connection);
                if (oLbsSql != null)
                {
                    oLbsSql.Close();
                }
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }        //Fin Desconectar