9 lines
254 B
C#
9 lines
254 B
C#
namespace Manager.App.Services.System;
|
|
|
|
public class BackgroundServiceRegistry(IEnumerable<ExtendedBackgroundService> backgroundServices)
|
|
{
|
|
public List<ExtendedBackgroundService> GetServices()
|
|
{
|
|
return backgroundServices.ToList();
|
|
}
|
|
} |