forked from ddrilling/AsbCloudServer
14 lines
388 B
C#
14 lines
388 B
C#
using AsbCloudApp.Data;
|
|
|
|
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);
|
|
}
|
|
}
|