Files
2024-02-02 19:38:42 +01:00

15 lines
381 B
Plaintext

@page "/Deposit"
@inject MessageService AppMService
<CodeReader IsPickup="false" IsDeposit="true" Title="Deposit"></CodeReader>
@code {
protected override void OnInitialized()
{
AppMService.ShowSearch = false;
AppMService.ShowCustomers = true;
AppMService.PageName = "Deposit";
AppMService.PageIcon = "fa-solid fa-upload pr-2";
}
}