public virtual GetJobResponse GetJob(string teamName, string jobId)
        {
            try
            {
                var result = Task.Run(async() => await ContentModeratorRepository.GetJobAsync(teamName, jobId)).Result;

                return(result);
            }
            catch (Exception ex)
            {
                Logger.Error("ContentModeratorService.GetJob failed", this, ex);
            }

            return(null);
        }