net6.0 Ready to test

This commit is contained in:
2022-03-29 07:23:13 -07:00
parent 836f70ed7f
commit 289547180a
135 changed files with 3189 additions and 7648 deletions

View File

@ -1,12 +0,0 @@
using Microsoft.AspNetCore.Mvc;
namespace APCViewer.Models.Stateless.Methods;
public interface IBackgroundController
{
ActionResult Index(bool? message_clear = null, bool? exceptions_clear = null, bool? set_is_primary_instance = null);
static string GetRouteName() => nameof(IBackgroundController).Replace("Controller", string.Empty)[1..];
}

View File

@ -0,0 +1,10 @@
namespace APCViewer.Models.Stateless.Methods;
public interface IBackgroundPage
{
void OnGet(bool? message_clear = null, bool? exceptions_clear = null, bool? set_is_primary_instance = null);
static string GetRouteName() => nameof(IBackgroundPage).Replace("Page", string.Empty)[1..];
}

View File

@ -0,0 +1,14 @@
namespace APCViewer.Models.Stateless.Methods;
public interface IIPDSFPage
{
void OnGet(string? directory = null, string? filter = null, bool is_gaN = false, bool is_Si = false);
// ContentResult OnGetView(string? id = null);
// FileResult OnGetDownloadFile(string? id = null);
// ContentResult OnGetViewCustom(string? ipdsf_file = null);
// FileResult OnGetDownloadFileCustom(string? ipdsf_file = null);
static string GetRouteName() => nameof(IIPDSFPage).Replace("Page", string.Empty)[1..];
}

View File

@ -0,0 +1,14 @@
namespace APCViewer.Models.Stateless.Methods;
public interface IPDSFPage
{
void OnGet(string? directory = null, string? filter = null, bool is_gaN = false, bool is_Si = false);
// ContentResult OnGetView(string? id = null);
// FileResult OnGetDownloadFile(string? id = null);
// ContentResult OnGetViewCustom(string? pdsf_file = null);
// FileResult OnGetDownloadFileCustom(string? pdsf_file = null);
static string GetRouteName() => nameof(IPDSFPage).Replace("Page", string.Empty)[1..];
}

View File

@ -0,0 +1,10 @@
namespace APCViewer.Models.Stateless.Methods;
public interface ITimePivotPage
{
void OnGet(bool is_gaN = false, bool is_Si = false);
static string GetRouteName() => nameof(ITimePivotPage).Replace("Page", string.Empty)[1..];
}