Files
mapo-core/MP-TAB3/Pages/Declarations.razor.cs
2024-02-26 20:17:35 +01:00

26 lines
528 B
C#

namespace MP_TAB3.Pages
{
public partial class Declarations
{
#region Protected Methods
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
await ReloadData();
}
protected void SetMacc(string selIdxMacc)
{
IdxMaccSubSel = selIdxMacc;
}
#endregion Protected Methods
#region Private Fields
private string IdxMaccSubSel = "";
#endregion Private Fields
}
}