using MP.Data.DbModels; namespace MP.INVE.Pages { public partial class Index { //public List? ElencoLink { get; set; } #region Protected Methods protected override async Task OnInitializedAsync() { //// nascondo ricerca //MessageService.ShowSearch = false; //// recupero elenco JQM ////ElencoLink = await MDService.ElencoLink(); //configData = await MDService.ConfigGetAll(); //if (configData != null) //{ // var currRec = configData.FirstOrDefault(x => x.Chiave == "AZIENDA"); // if (currRec != null) // { // currAzienda = currRec.Valore; // } //} //await getId(); await Task.Delay(1); } #endregion Protected Methods #region Private Properties private List? configData { get; set; } = null; #endregion Private Properties } }