public void UpdateCurrentPlaylist(List<int> cardIDs, string description)
        {
            dsLanguageData.RecentPlaylistRow row = _dtRecentPlaylist[0];

            LanguageData dataLayer = new LanguageData();
            dataLayer.daRecentPlaylist.UpdateByID(row.ID, description, dataLayer.IntListToString(cardIDs), row.Index);

            RefreshRecentPlaylists();
        }