public async Task UpdateSimulationAsync(SimulationApiModel model)
 {
     await this.httpClient.PutAsync($"{this.serviceUri}/simulations/{model.Id}", $"Simulation {model.Id}", model);
 }
 public async Task UpdateSimulation(SimulationApiModel model)
 {
     await this.httpClient.PutAsync($"{this.serviceUri}/simulations/{SIMULATION_ID}", $"Simulation {SIMULATION_ID}", model);
 }