6ca41ed720
- eliminazione riferimenti codice escluso da compilazione - pulizia codice da componenti non impiegati NON ancora 100% ok pulizia
37 lines
869 B
C#
37 lines
869 B
C#
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.JSInterop;
|
|
using MP.TaskMan.Models;
|
|
using MP.Land.Data;
|
|
using static MP.TaskMan.Objects.Enums;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using System;
|
|
using System.Linq;
|
|
using MP.Data.Services;
|
|
using DnsClient.Protocol;
|
|
using MP.TaskMan.Services;
|
|
|
|
namespace MP.Land.Pages
|
|
{
|
|
public partial class TaskScheduler : ComponentBase
|
|
{
|
|
#region Protected Properties
|
|
|
|
[Inject]
|
|
protected Data.MessageService MServ { get; set; } = null!;
|
|
|
|
#endregion Protected Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
MServ.ShowSearch = true;
|
|
MServ.PageName = "Task Scheduler";
|
|
MServ.PageIcon = "oi oi-clock";
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |