namespace MP_TAB3.Pages { public partial class Controls { #region Public Methods #endregion Public Methods #region Protected Properties #endregion Protected Properties #region Protected Methods protected async Task ForceReload() { IsLoading = true; await Task.Delay(50); IsLoading = false; } 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 = ""; private bool IsLoading = false; #endregion Private Fields #region Private Methods #endregion Private Methods } }