43 lines
797 B
Plaintext
43 lines
797 B
Plaintext
@page "/user/sysadmin"
|
|
@using TIAMSharedUI.Shared
|
|
@using TIAMWebApp.Shared.Application.Interfaces;
|
|
@using TIAMSharedUI.Shared.Components.BaseComponents
|
|
@inherits UserBasePageComponent
|
|
@layout AdminLayout
|
|
@inject IPopulationStructureDataProvider DataProvider
|
|
@inject ISupplierService SupplierService
|
|
@inject IUserDataService UserDataService
|
|
<PageTitle>Transfer</PageTitle>
|
|
|
|
<div class="text-center m-5">
|
|
<h1>Dashboard</h1>
|
|
<h2 style="font-size:small">Have a nice day!</h2>
|
|
</div>
|
|
|
|
<!--We need to check if the user is owner of a swerviceprovider-->
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
|
|
|
<SysAdminComponent></SysAdminComponent>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
@code {
|
|
|
|
bool isUserLoggedIn;
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
await base.OnInitializedAsync();
|
|
|
|
}
|
|
|
|
}
|
|
|