public async Task <IEnumerable <TEntity> > GetAsync(string order, int page)
 {
     return(await SoundCloudClient.GetPageAsync <TEntity>(RelativePath, order, page)
            .ContinueWith(task => task.SetSoundCloudClient(SoundCloudClient)));
 }