forked from ddrilling/AsbCloudServer
22 lines
754 B
C#
22 lines
754 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface ITelemetryService
|
|
{
|
|
int? GetidWellByTelemetryUid(string uid);
|
|
int GetOrCreateTemetryIdByUid(string uid);
|
|
double GetTimezoneOffsetByTelemetryId(int idTelemetry);
|
|
void UpdateInfo(string uid, TelemetryInfoDto info);
|
|
int? GetIdTelemetryByIdWell(int idWell);
|
|
int Merge(IEnumerable<int> telemetryIds);
|
|
IEnumerable<(string Key, int[] Ids)> GetRedundentRemoteUids();
|
|
Task<IEnumerable<WellDto>> GetTransmittingWellsAsync(int idCompany,
|
|
CancellationToken token);
|
|
void SaveRequestDate(string uid);
|
|
}
|
|
}
|