Files
2024-02-28 15:20:16 +01:00

27 lines
522 B
C#

namespace MP_TAB3.Pages
{
public partial class Scrap
{
#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
}
}