2a41e8070b
- fix componenti UI - lasciati invariati in area wwwroot
25 lines
492 B
C#
25 lines
492 B
C#
using Microsoft.AspNetCore.Components;
|
|
using MP.SPEC.Data;
|
|
|
|
namespace MP.SPEC.Pages
|
|
{
|
|
public partial class Utils
|
|
{
|
|
#region Public Methods
|
|
|
|
public async Task flushCache()
|
|
{
|
|
await Task.Delay(1);
|
|
await MDService.FlushRedisCache();
|
|
}
|
|
|
|
#endregion Public Methods
|
|
|
|
#region Protected Properties
|
|
|
|
[Inject]
|
|
protected MpDataService MDService { get; set; }
|
|
|
|
#endregion Protected Properties
|
|
}
|
|
} |