30 lines
579 B
C#
30 lines
579 B
C#
using Microsoft.AspNetCore.Components;
|
|
using MP.Data.DbModels;
|
|
using MP.Data;
|
|
using MP.Data.Services;
|
|
using MP_TAB3.Shared;
|
|
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
|
|
}
|
|
} |