/// <summary> /// Get a Specific Connection String /// </summary> /// <param name="connection">Name of the Connection String</param> /// <returns>Connection String</returns> internal string GetConnectionString(Connections connection) { try { return Utilities.GetConnectionString(connection.ToString()); } catch { return string.Empty; } }