Aggiunte chiamate api per dati utili

This commit is contained in:
2026-02-12 12:59:46 +01:00
parent 5afe4f4745
commit 06cc41ef8b
8 changed files with 70 additions and 4 deletions

View File

@@ -11,7 +11,13 @@ public class IntegrySteupService(IIntegryApiRestClient integryApiRestClient) : I
#region Retrieve
public Task<List<PuntoVenditaDto>> RetrievePuntiVendita() =>
integryApiRestClient.AuthorizedGet<List<PuntoVenditaDto>>($"{BaseRequest}/getPuntiVendita")!;
integryApiRestClient.AuthorizedGet<List<PuntoVenditaDto>>($"{BaseRequest}/retrievePuntiVendita")!;
public Task<List<JtbFasiDto>> RetrieveReparti() =>
integryApiRestClient.AuthorizedGet<List<JtbFasiDto>>($"{BaseRequest}/retrieveReparti")!;
public Task<List<StbActivityTypeDto>> RetrieveActivityType() =>
integryApiRestClient.AuthorizedGet<List<StbActivityTypeDto>>($"{BaseRequest}/retrieveActivityType")!;
#endregion
}