private async void GetUpComingMovies(int page) { try { BusyIndicatorValue = true; List <Movie> moviesTest = await _dataService.GetUpCommingMoviesData(page); Movies = new ObservableCollection <Movie>(moviesTest); BusyIndicatorValue = false; } catch (ServiceRequestException) { RaiseNotificationServer(); } catch (Exception e) { _logger.ErrorException(ForExceptions, e); } }