Files
mapo-core/MP.Prog/Pages/Setup.razor
T
2021-09-06 18:34:38 +02:00

23 lines
367 B
Plaintext

@page "/Setup"
@using MP.Prog.Components
@using MP.Prog.Data
@inject MessageService AppMService
<h3>Setup</h3>
<CodArtSelector searchUpdated="searchUpd"></CodArtSelector>
<p>Selezionato <b>@CurrCodArt</b></p>
@code {
protected string CurrCodArt { get; set; } = "";
protected void searchUpd(string newCod)
{
CurrCodArt = newCod;
}
}