forked from ddrilling/AsbCloudServer
11 lines
306 B
C#
11 lines
306 B
C#
using AsbCloudApp.Data;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface ITelemetryDataService
|
|
{
|
|
IEnumerable<DataSaubBaseDto> Get(int wellId, DateTime dateBegin = default, double intervalSec = 600d, int approxPointsCount = 1024);
|
|
}
|
|
} |