static internal IAlbumDescriptor SimpleAlbumDescriptorFromAlbumModifier(IInternalAlbumModifier found)
 {
     var res = new AlbumDescriptor();
     res.Artist = MusicCollection.Implementation.Artist.AuthorName(found.Artists);
     res.Year = found.Year;
     res.Genre = found.Genre;
     res.Name = found.Name;
     res.RawIDs = found.CDIDs;
     return res;
 }
 internal TrackModifier(Track Track, IInternalAlbumModifier IMA)
 {
     _Track = Track;
     _IMA = IMA;
     _Context = IMA.Context;
 }