Beispiel #1
0
 private async void AndTheApiIsCalledToGetSpeakersWithSession()
 {
     _apiService       = new BoqApiService(_httpHelper.Object);
     _returnedSpeakers = await _apiService.GetAllSpeakersWithSessions();
 }
Beispiel #2
0
 public async Task <IEnumerable <Speaker> > AllSpeakers()
 {
     return(await _boqApiService.GetAllSpeakersWithSessions());
 }