UI_SequentMicrosystems-RPI/Pages/PointsPage.razor

51 lines
564 B
Plaintext

@page "/Points"
@using UI_SequentMicrosystems.Components
@using UI_SequentMicrosystems.Services
@using UI_SequentMicrosystems.Models
@inject PointsService _PointsService
@inject RTD8TMService _RTD8TMService
@inject SyncService _SyncService
@inject NavigationManager Navigator
<PageTitle>Saved Points</PageTitle>
<PointsTableRTD8TMComponent />
@code {
protected override void OnInitialized()
{
//_RTD8TMService.SetAddress("http://10.250.251.131/");
_SyncService.SetAddress(Navigator.BaseUri);
}
}