public async Task RemoveAssetAsync(string indexName, string asset)
 {
     try
     {
         await _simulationService.RemoveAssetAsync(indexName, asset);
     }
     catch (EntityNotFoundException)
     {
         throw new ValidationApiException(HttpStatusCode.NotFound, "Simulation parameters not found");
     }
 }