15 lines
381 B
Plaintext
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";
|
|
}
|
|
}
|