15 lines
421 B
C#
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;
|
|
}
|
|
}
|