2021-11-22 16:02:15 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System;
|
2021-10-15 12:24:04 +05:00
|
|
|
|
using System.Collections.Generic;
|
2021-05-12 16:03:14 +05:00
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface ITelemetryTracker
|
|
|
|
|
{
|
2021-10-15 12:24:04 +05:00
|
|
|
|
DateTime GetLastTelemetryDateByUid(string uid);
|
2021-11-22 16:02:15 +05:00
|
|
|
|
DatesRangeDto GetTelemetryDateRangeByUid(string uid);
|
2021-10-28 10:56:18 +05:00
|
|
|
|
IEnumerable<string> GetTransmittingTelemetriesUids();
|
|
|
|
|
void SaveRequestDate(string uid, DateTime remoteDate);
|
2021-05-12 16:03:14 +05:00
|
|
|
|
}
|
|
|
|
|
}
|