internal void Initialize(AE.BassPlayer bassPlayer, SampleLibrary sampleLibrary, ISampleRecipient sampleRecipient = null)
 {
     sampleLibraryControl.BassPlayer = bassPlayer;
     sampleLibraryControl.SampleLibrary = sampleLibrary;
     sampleLibraryControl.SampleRecipient = sampleRecipient;
     sampleLibraryControl.Initialize();
 }
 internal void Initialize(BassPlayer bassPlayer, ISampleLibrary trackSampleLibrary, ISampleRecipient sampleRecipient = null)
 {
     sampleLibraryControl.BassPlayer      = bassPlayer;
     sampleLibraryControl.SampleLibrary   = trackSampleLibrary;
     sampleLibraryControl.SampleRecipient = sampleRecipient;
     sampleLibraryControl.Initialize();
 }