Files
mapo-core/MP-TAB3/Pages/Index.razor.cs
T
Samuele E. Locatelli 50d65eebaa MP.DATA, riorganizzazioni varie:
- renaming classi gestione DbModels in
- spostamento anagrafica flussi da auth a generale
2025-03-08 10:40:09 +01:00

31 lines
598 B
C#

using Microsoft.AspNetCore.Components;
using MP.Data.DbModels;
using MP.Data;
using MP.Data.Services;
using MP_TAB3.Shared;
using NLog.Fluent;
using Newtonsoft.Json;
namespace MP_TAB3.Pages
{
public partial class Index : IDisposable
{
#region Public Methods
public void Dispose()
{
//GC.Collect();
}
#endregion Public Methods
#region Protected Methods
protected override async Task OnAfterRenderAsync(bool firstRender)
{
await Task.Delay(1);
}
#endregion Protected Methods
}
}