public IActionResult DownloadImages() { byte[] data = _encryptionService.DownloadImages(); if (data == null) { return(NotFound()); } return(File(data, "application/zip", $"test.zip")); }