46 lines
797 B
Plaintext
46 lines
797 B
Plaintext
@page "/user/createAndManageTransfer"
|
|
@using TIAMSharedUI.Shared
|
|
@using TIAMWebApp.Shared.Application.Models;
|
|
@using TIAMWebApp.Shared.Application.Interfaces;
|
|
@layout AdminLayout
|
|
@inject IPopulationStructureDataProvider DataProvider
|
|
@inject ISupplierService SupplierService
|
|
@inject IUserDataService UserDataService
|
|
<PageTitle>Transfer</PageTitle>
|
|
|
|
|
|
<!--We need to check if the user is owner of a swerviceprovider-->
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<!-- Stats admin-->
|
|
<hr />
|
|
|
|
<div class="row py-3">
|
|
<div class=" col-12 col-xl-3">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
@code {
|
|
string Id = "2312-32132121-32123";
|
|
bool isUserLoggedIn;
|
|
int userType = 0;
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
|
|
}
|
|
|
|
}
|
|
|