Files
2026-04-02 18:29:09 +02:00

54 lines
1.1 KiB
C#

namespace MP_IO.Interfaces
{
public interface IBENCHService
{
#region Public Methods
/// <summary>
/// GET BENCH/CNTKEY/test
/// </summary>
string CNTKEY(string id);
/// <summary>
/// GET BENCH/DTMAC/SIMUL_01
/// </summary>
string DTMAC(string id);
/// <summary>
/// GET BENCH/fSMI/18?idxMS=1&valore=1
/// </summary>
string fSMI(int? id, int? idxMS, int? valore);
/// <summary>
/// GET: IOB (è un check alive)
/// </summary>
string Index();
/// <summary>
/// GET BENCH/INSEN/2004
/// </summary>
string INSEN(string id);
/// <summary>
/// GET BENCH/RCLEAN/100
/// </summary>
string RCLEAN(int? id);
/// <summary>
/// GET BENCH/RSETUP/100
/// </summary>
string RSETUP(int? id);
/// <summary>
/// GET BENCH/RSH/100
/// </summary>
string RSH(int? id);
/// <summary>
/// GET BENCH/tSMI/60
/// </summary>
string tSMI(int? id);
#endregion Public Methods
}
}