@page "/branches"
Branches
Branches
List of Branches
@if (branchList == null)
{
}
else
{
Branch Code
Description
Summary
@context.brCode
@context.brDesc
@context.address
}
@code {
public BranchServices.branch[]? branchList;
protected override async Task OnInitializedAsync()
{
BranchServices.BranchServiceClient branchServiceClient = new();
branchList = await branchServiceClient.GetDataAsync();
}
}