private async void GetShowsByName(string name) { try { BusyIndicatorValue = true; List <Show> showsTest = await _dataService.GetShowsByName(name); Shows = new ObservableCollection <Show>(showsTest); BusyIndicatorValue = false; } catch (ServiceRequestException) { RaiseNotification(); } catch (Exception e) { _logger.ErrorException(ForExceptions, e); } }