From 6701da137d2a9bb51f971eab14f516ab1f7d3dd0 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Tue, 6 Jan 2026 10:37:15 -0500 Subject: [PATCH] chore(client): remove old service registrations Remove ISearchService, ILookupService, and IFileService registrations from Program.cs as these are now replaced by the typed API clients (ISearchApiClient, ILookupApiClient, IFileApiClient). --- NEW/src/JdeScoping.Client/Program.cs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/NEW/src/JdeScoping.Client/Program.cs b/NEW/src/JdeScoping.Client/Program.cs index 41b4268..be40a6b 100644 --- a/NEW/src/JdeScoping.Client/Program.cs +++ b/NEW/src/JdeScoping.Client/Program.cs @@ -46,13 +46,10 @@ builder.Services.AddScoped(); // SignalR service builder.Services.AddScoped(); -// API client services -builder.Services.AddScoped(); -builder.Services.AddScoped(); -builder.Services.AddScoped(); +// Refresh status service (monitors data sync status) builder.Services.AddScoped(); -// New typed API clients (shared contracts) +// Typed API clients (shared contracts) builder.Services.AddScoped(); builder.Services.AddScoped(); builder.Services.AddScoped();