public ActionResult DownloadSpontaneousDataset()
        {
            var model = _artefactService.CreateSpontaneousDatasetForDownload();

            return(File(string.Format("{0}{1}", model.Path, model.FileName), "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", model.FileName));
        }