Update API x metodo mode 2 (BOM)

This commit is contained in:
Samuele Locatelli
2025-08-04 10:44:26 +02:00
parent c3e44acf23
commit eabc1997d3
8 changed files with 139 additions and 64 deletions
@@ -45,6 +45,13 @@ namespace Lux.API.Services
string UID = retData.Args["UID"];
await _cacheService.SaveSvgAsync(UID, newSvg);
}
else if(retData.Args.ContainsKey("BOM"))
{
// salvo BOM ricevuta
string newBom = retData.Args["BOM"];
string UID = retData.Args["UID"];
await _cacheService.SaveBomAsync(UID, newBom);
}
}
}
}