public ImageResult ShowImage(int id)
        {
            var image = _mediaImageRepo.GetImage(id);

            byte[] img         = ImageHelper.Decompress(image.IMAGE1);
            string contentType = image.MimeType.Name;

            // Here we are calling the extension method and returning
            // the ImageResult.
            //return splc.beholder.web.Utility.ControllerExtensions.Image(this, image, contentType);
            return(this.Image(img, contentType));
        }