public async Task <IActionResult> UpsertDataset(Dataset dataset)
 {
     return(await ExecuteRepositoryAction(() => _datasetRepository.UpsertDataset(dataset),
                                          $"Unable to create dataset {dataset.AsJson()}"));
 }