public IActionResult Get(string productKey, string imageName) { var(image, contentType) = service.GetImageStream(productKey, imageName); return(File(image, contentType)); }