Start operation implementation

This commit is contained in:
2025-10-23 18:15:25 +09:00
parent 0626ce0176
commit 608dcc2098
5 changed files with 97 additions and 3 deletions

View File

@ -1,3 +1,4 @@
using Hcs.WebApp.BackgroundServices;
using Hcs.WebApp.Components;
using Hcs.WebApp.Components.Shared;
using Hcs.WebApp.Data.Hcs;
@ -60,6 +61,9 @@ builder.Services.AddScoped<UsersService>();
builder.Services.AddScoped<OperationService>();
builder.Services.AddScoped<RegistryService>();
builder.Services.AddSingleton<OperationExecutionState>();
builder.Services.AddHostedService<OperationExecutionService>();
var activator = new RadzenComponentActivator();
activator.Override(typeof(RadzenDataGrid<>), typeof(LocalizedRadzenDataGrid<>));
builder.Services.AddSingleton<IComponentActivator>(activator);