public ActionResult CaricaSurvey(string title, HttpPostedFileBase file) { if (file != null && file.ContentLength > 0) { excelService.CaricaSurvey(title, file.InputStream); } return(View()); }