forked from ddrilling/AsbCloudServer
20 lines
765 B
C#
20 lines
765 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AsbCloudApp.Data;
|
|
using AsbCloudDb.Model;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IAnalyticsService
|
|
{
|
|
IEnumerable<WellDepthToDayDto> GetWellDepthToDay(int wellId);
|
|
IEnumerable<WellDepthToIntervalDto> GetWellDepthToInterval(int wellId,
|
|
int intervalHoursTimestamp, int workBeginTimestamp);
|
|
IEnumerable<OperationDurationDto> GetOperationsSummary(int wellId,
|
|
DateTime begin = default, DateTime end = default);
|
|
IEnumerable<OperationInfoDto> GetOperationsToInterval(int wellId,
|
|
int intervalHoursTimestamp, int workBeginTimestamp);
|
|
TelemetryAnalysis GetDrillingAnalysis(IEnumerable<DataSaubBase> dataSaubBases);
|
|
}
|
|
}
|