forked from ddrilling/AsbCloudServer
13 lines
374 B
C#
13 lines
374 B
C#
|
using System;
|
|||
|
using AsbCloudApp.Data;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
public interface IReportService
|
|||
|
{
|
|||
|
int GetReportPagesCount(int wellId, DateTime begin, DateTime end, int stepSeconds, int format);
|
|||
|
ReportPropertiesDto GetReportFileProperties(string reportName, string rootPath);
|
|||
|
DatesRangeDto GetReportsDatesRange(int wellId);
|
|||
|
}
|
|||
|
}
|