[CHANGE] DI fixes

This commit is contained in:
max
2025-09-09 00:58:12 +02:00
parent a5e55e563e
commit d183803390
3 changed files with 20 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
namespace Manager.App.Services.System;
public class HostedServiceConnector
{
private readonly List<IHostedService> _hostedServices = [];
public void RegisterService(IHostedService service)
{
_hostedServices.Add(service);
}
}