public async Task <ActionResult> DesignSnapshot(int id, string size)
        {
            if (!int.TryParse(size, out var sizeValue))
            {
                sizeValue = Constants.ThumbnailSize;
            }

            var image = await DesignUserService.GetDesignSnapshotThumbnailAsync(GetUserId(), id, sizeValue);

            return(new FileContentResult(image, "image/jpg"));
        }