DD.WellWorkover.Cloud/AsbCloudApp/Services/IAnalyticsService.cs

13 lines
381 B
C#
Raw Normal View History

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);
}
}