private async void GetActorsData()
        {
            try
            {
                BusyIndicatorValue = true;
                Watson             = await _dataService.GetActor(WatsonId);

                Johansson = await _dataService.GetActor(JohanssonId);

                Lawrence = await _dataService.GetActor(LawrenceId);

                Hathaway = await _dataService.GetActor(HathawayId);

                Jackman = await _dataService.GetActor(JackmanId);

                Depp = await _dataService.GetActor(DeppId);

                Diesel = await _dataService.GetActor(DieselId);

                DiCaprio = await _dataService.GetActor(DiCaprioId);

                Hardy = await _dataService.GetActor(HardyId);

                Pitt = await _dataService.GetActor(PittId);

                Downey = await _dataService.GetActor(DowneyId);

                Robbie = await _dataService.GetActor(RobbieId);

                BusyIndicatorValue = false;
            }
            catch (NullReferenceException ex)
            {
                RaiseNotificationNull();
                _logger.ErrorException(ForExceptions, ex);
            }
            catch (ServiceRequestException)
            {
                RaiseNotification();
            }
            catch (Exception e)
            {
                _logger.ErrorException(ForExceptions, e);
            }
        }