11 lines
250 B
C#
11 lines
250 B
C#
namespace Manager.App.Services.System;
|
|
|
|
public class HostedServiceConnector
|
|
{
|
|
private readonly List<IHostedService> _hostedServices = [];
|
|
|
|
public void RegisterService(IHostedService service)
|
|
{
|
|
_hostedServices.Add(service);
|
|
}
|
|
} |