using System.Collections.Generic; using AsbCloudApp.Data; namespace AsbCloudApp.Services { public interface IAnalyticsService { IEnumerable GetWellDepthToDayData(int wellId); IEnumerable GetWellDepthToIntervalData(int wellId, double interval = 24, int beginHour = 8, int beginMinutes = 0); } }