695b46bb49
- Gestione fermate RT - fix lettura h2IOB
35 lines
760 B
C#
35 lines
760 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace MP_TAB_SERV.Components
|
|
{
|
|
public partial class ProdStopMan
|
|
{
|
|
#region Public Properties
|
|
|
|
[Parameter]
|
|
public EventCallback<int> E_EventSelected { get; set; }
|
|
|
|
[Parameter]
|
|
public int IdxEvento { get; set; } = 0;
|
|
|
|
[Parameter]
|
|
public string objCss { get; set; } = "";
|
|
|
|
[Parameter]
|
|
public string objIcon { get; set; } = "";
|
|
|
|
[Parameter]
|
|
public string objTxt { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected async Task ReportSelected()
|
|
{
|
|
await E_EventSelected.InvokeAsync(IdxEvento);
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |