private async void GetVideoUrl(int id)
        {
            try
            {
                var video = await _dataService.GetTraillerShow(id);

                if (video != null)
                {
                    VideoUrl = video.Key;
                }
            }
            catch (ServiceRequestException)
            {
                RaiseNotification();
            }
            catch (Exception e)
            {
                _logger.ErrorException(ForExceptions, e);
            }
        }