forked from ddrilling/AsbCloudServer
18 lines
687 B
C#
18 lines
687 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AsbCloudApp.Data;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IAnalyticsService
|
|
{
|
|
IEnumerable<WellDepthToDayDto> GetWellDepthToDay(int wellId);
|
|
IEnumerable<WellDepthToIntervalDto> GetWellDepthToInterval(int wellId,
|
|
int intervalHours = 24, int intervalMinutes = 0, int beginHour = 8, int beginMinutes = 0);
|
|
IEnumerable<OperationPercentageDto> GetOperationsSummary(int wellId,
|
|
DateTime begin = default, DateTime end = default);
|
|
IEnumerable<OperationInfoDto> GetOperationsToTime(int wellId,
|
|
DateTime begin = default, DateTime end = default);
|
|
}
|
|
}
|