Files
mapo-core/MP.INVE/Pages/Index.razor.cs
T
Samuele Locatelli 243c451bef Dettaglio lotti scansionati:
- aggiunta (preliminare) visualizzazione
2022-12-19 10:14:27 +01:00

38 lines
1.0 KiB
C#

using MP.Data.DatabaseModels;
namespace MP.INVE.Pages
{
public partial class Index
{
//public List<LinkMenu>? 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<ConfigModel>? configData { get; set; } = null;
#endregion Private Properties
}
}