forked from ddrilling/AsbCloudServer
da9e94b4b9
Update related services. Small refactor TelemetryController: exclude dictionaries updates from tracker update. All tracker updates moved to services.
24 lines
872 B
C#
24 lines
872 B
C#
using AsbCloudApp.Data;
|
|
using System;
|
|
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();
|
|
IEnumerable<TelemetryDto> GetTransmittingTelemetriesAsync(int idCompany);
|
|
DateTime GetLastTelemetryDate(string telemetryUid);
|
|
DateTime GetLastTelemetryDate(int telemetryId);
|
|
void SaveRequestDate(string uid, DateTime remoteDate);
|
|
}
|
|
}
|