[CHANGE] Services view

This commit is contained in:
max
2025-09-09 19:51:07 +02:00
parent 2593d02a73
commit 9ff4fcded2
6 changed files with 66 additions and 17 deletions

View File

@@ -0,0 +1,16 @@
using Manager.App.Services;
using Microsoft.AspNetCore.Components;
using MudBlazor;
namespace Manager.App.Components.Pages;
public partial class Services : ComponentBase
{
private string _searchText = "";
private List<ExtendedBackgroundService> _backgroundServices = [];
protected override void OnInitialized()
{
_backgroundServices = ServiceManager.GetServices();
}
}