using Microsoft.Extensions.DependencyInjection; namespace Kbx.Shared.ExternalData; public static class KbxExternalDataRegistration { public static IServiceCollection AddKbxExternalData(this IServiceCollection services) { services.AddSingleton(); services.AddSingleton(); services.AddSingleton(); services.AddSingleton(); services.AddSingleton(); return services; } }