public async Task <IHttpActionResult> Download(string path) { try { var response = ResponseMessage(await _logicEm.Download(path)); return(response); } catch (Exception e) { Log.Error("DownloadStampa", e); return(ErrorHandler(e)); } }