25 lines
1.2 KiB
C#
25 lines
1.2 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace APCViewer.Models
|
|
{
|
|
public interface IHomeController
|
|
{
|
|
IActionResult Background(bool? message_clear = null, bool? exceptions_clear = null, bool? set_is_primary_instance = null, bool? logistics_clear = null);
|
|
IActionResult DownloadCustomIPDSF(string ipdsf_file = null);
|
|
IActionResult DownloadCustomPDSF(string pdsf_file = null);
|
|
IActionResult DownloadIPDSF(string id = null);
|
|
IActionResult DownloadPDSF(string id = null);
|
|
IActionResult Encode(string value = null);
|
|
IActionResult Error();
|
|
IActionResult Index();
|
|
IActionResult IPDSF(string directory = null, string filter = null, bool is_gaN = false, bool is_Si = false);
|
|
IActionResult PDSF(string directory = null, string filter = null, bool is_gaN = false, bool is_Si = false);
|
|
IActionResult Privacy();
|
|
IActionResult TimePivot(bool is_gaN = false, bool is_Si = false);
|
|
ContentResult ViewCustomIPDSF(string ipdsf_file = null);
|
|
ContentResult ViewCustomPDSF(string pdsf_file = null);
|
|
ContentResult ViewIPDSF(string id = null);
|
|
ContentResult ViewPDSF(string id = null);
|
|
}
|
|
|
|
} |