23 lines
367 B
Plaintext
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;
|
|
}
|
|
|
|
} |