using Microsoft.Extensions.DependencyInjection;
using ZB.MOM.WW.OtOpcUa.Commons.Interfaces;
namespace ZB.MOM.WW.OtOpcUa.AdminUI.Clients;
/// Service collection extensions for Admin UI client registration.
public static class ServiceCollectionExtensions
{
///
/// Registers the Admin UI client services in the dependency injection container.
///
/// The service collection to register clients into.
public static IServiceCollection AddOtOpcUaAdminClients(this IServiceCollection services)
{
services.AddScoped();
services.AddScoped();
return services;
}
}