using AsbCloudApp.Data.SAUB; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; #nullable enable namespace AsbCloudApp.Services { /// /// Телеметрия САУБ /// public interface ITelemetryDataSaubService : ITelemetryDataService { /// /// усредненная статистика по 1м за весь период /// /// МЕДЛЕННЫЙ ЗАПРОС /// /// /// /// /// Task> GetTelemetryDataStatAsync(int idTelemetry, CancellationToken token); } } #nullable disable