forked from ddrilling/AsbCloudServer
14 lines
415 B
C#
14 lines
415 B
C#
using System;
|
|
using AsbCloudApp.Data;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IReportService
|
|
{
|
|
string RootPath { get; }
|
|
int CreateReport(int wellId, int stepSeconds, int format, DateTime begin, DateTime end);
|
|
int GetReportPagesCount(int wellId, DateTime begin, DateTime end, int stepSeconds, int format);
|
|
DatesRangeDto GetReportsDatesRange(int wellId);
|
|
}
|
|
}
|