forked from ddrilling/AsbCloudServer
13 lines
381 B
C#
13 lines
381 B
C#
|
using System.Collections.Generic;
|
|||
|
using AsbCloudApp.Data;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
public interface IAnalyticsService
|
|||
|
{
|
|||
|
IEnumerable<WellDepthToDayDto> GetWellDepthToDayData(int wellId);
|
|||
|
IEnumerable<WellDepthToIntervalDto> GetWellDepthToIntervalData(int wellId,
|
|||
|
double interval = 24, int beginHour = 8, int beginMinutes = 0);
|
|||
|
}
|
|||
|
}
|