forked from ddrilling/AsbCloudServer
26 lines
832 B
C#
26 lines
832 B
C#
|
using AsbCloudApp.Data.SAUB;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
#nullable enable
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Телеметрия САУБ
|
|||
|
/// </summary>
|
|||
|
public interface ITelemetryDataSaubService : ITelemetryDataService<TelemetryDataSaubDto>
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// усредненная статистика по 1м за весь период
|
|||
|
/// <para>
|
|||
|
/// МЕДЛЕННЫЙ ЗАПРОС
|
|||
|
/// </para>
|
|||
|
/// </summary>
|
|||
|
/// <param name="idTelemetry"></param>
|
|||
|
/// <param name="token"></param>
|
|||
|
/// <returns></returns>
|
|||
|
Task<IEnumerable<TelemetryDataSaubStatDto>> GetTelemetryDataStatAsync(int idTelemetry, CancellationToken token);
|
|||
|
}
|
|||
|
}
|
|||
|
#nullable disable
|