forked from ddrilling/AsbCloudServer
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using AsbCloudApp.Data.SAUB;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
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);
|
|
|
|
/// <summary>
|
|
/// Получить упакованый csv файл
|
|
/// </summary>
|
|
/// <param name="idWell"></param>
|
|
/// <param name="beginDate"></param>
|
|
/// <param name="endDate"></param>
|
|
/// <param name="token"></param>
|
|
/// <returns></returns>
|
|
Task<Stream> GetZippedCsv(int idWell, DateTime beginDate, DateTime endDate, CancellationToken token);
|
|
}
|
|
} |