16 lines
381 B
Plaintext
16 lines
381 B
Plaintext
@page "/PickUp"
|
|
@inject MessageService AppMService
|
|
|
|
<CodeReader IsPickup="true" IsDeposit="false" Title="PickUp"></CodeReader>
|
|
|
|
@code {
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
AppMService.ShowSearch = false;
|
|
AppMService.ShowCustomers = true;
|
|
AppMService.PageName = "Pickup";
|
|
AppMService.PageIcon = "fa-solid fa-download pr-2";
|
|
}
|
|
}
|