16 lines
399 B
C#
16 lines
399 B
C#
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();
|
|
}
|
|
} |