From be960f9e3faef2f7531f2b23064f0f1de27ace1d Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Mon, 13 Apr 2026 18:47:08 +0200 Subject: [PATCH] update SetCounter: usato metodo async... --- MP.IOC/Controllers/IOBController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MP.IOC/Controllers/IOBController.cs b/MP.IOC/Controllers/IOBController.cs index 8fa1da76..0804b9c2 100644 --- a/MP.IOC/Controllers/IOBController.cs +++ b/MP.IOC/Controllers/IOBController.cs @@ -401,7 +401,7 @@ namespace MP.IOC.Controllers DateTime dataOraEvento = DateTime.Now; Log.Debug($"Salvataggio counter | id: {id} | pzCount: {counter}"); - answ = DService.saveCounter(id, counter); + answ = await DService.saveCounterAsync(id, counter); return Ok(answ); }