public virtual bool DeleteImageList(string listId)
        {
            try
            {
                Task.Run(async() => await ContentModeratorRepository.DeleteImageListAsync(listId));

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

            return(false);
        }