Aggiornamento librerie

This commit is contained in:
2026-04-23 14:45:48 +02:00
parent f09ea026bc
commit 98d2dda780
7 changed files with 29 additions and 29 deletions

View File

@@ -26,7 +26,7 @@ public class IntegrySteupService(IIntegryApiRestClient integryApiRestClient) : I
public Task<ArticoliInGrigliaDto?> RetrieveArtFromBarcode(string barcode) =>
integryApiRestClient.AuthorizedGet<ArticoliInGrigliaDto?>(
$"{BaseRequest}/retrieveArtFromBarcode",
new Dictionary<string, object>
new Dictionary<string, object?>
{
{ "barcode", barcode }
}
@@ -73,7 +73,7 @@ public class IntegrySteupService(IIntegryApiRestClient integryApiRestClient) : I
public Task DeleteScheda(string activityId) =>
integryApiRestClient.AuthorizedGet<object>(
$"{BaseRequest}/deleteScheda",
new Dictionary<string, object>
new Dictionary<string, object?>
{
{ "activityId", activityId }
}