Files
KArtSell.Aegis/docs/Design/kbx-foundation-v36/backend/Shared/Runtime/KbxRuntimeRegistration.cs
T

15 lines
421 B
C#

using Microsoft.Extensions.DependencyInjection;
namespace Kbx.Shared.Runtime;
public static class KbxRuntimeRegistration
{
public static IServiceCollection AddKbxRuntime(this IServiceCollection services)
{
services.AddScoped<KbxOperationRunRepository>();
services.AddScoped<KbxNotificationRepository>();
services.AddScoped<KbxRuntimeNoticeRepository>();
return services;
}
}