[CHANGE] Services view
This commit is contained in:
16
Manager.App/Components/Pages/Services.razor.cs
Normal file
16
Manager.App/Components/Pages/Services.razor.cs
Normal 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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user