public virtual GetImagesResponse GetAllImageIds(string listId) { return(PolicyService.ExecuteRetryAndCapture400Errors( "ContentModeratorService.GetAllImageIds", ApiKeys.ContentModeratorRetryInSeconds, () => { var result = ContentModeratorRepository.GetAllImageIds(listId); return result; }, null)); }
public virtual GetImagesResponse GetAllImageIds(string listId) { try { var result = ContentModeratorRepository.GetAllImageIds(listId); return(result); } catch (Exception ex) { Logger.Error("ContentModeratorService.GetAllImageIds failed", this, ex); } return(null); }