26 lines
528 B
C#
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
|
|
}
|
|
} |