Match TFS Changeset 303361
This commit is contained in:
25
APC Viewer/Models/IHomeController.cs
Normal file
25
APC Viewer/Models/IHomeController.cs
Normal file
@ -0,0 +1,25 @@
|
||||
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);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user