2021-05-18 12:33:23 +05:00
|
|
|
|
using System;
|
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IReportService
|
|
|
|
|
{
|
2021-05-19 14:41:27 +05:00
|
|
|
|
string RootPath { get; }
|
|
|
|
|
int CreateReport(int wellId, int stepSeconds, int format, DateTime begin, DateTime end);
|
2021-05-18 12:33:23 +05:00
|
|
|
|
int GetReportPagesCount(int wellId, DateTime begin, DateTime end, int stepSeconds, int format);
|
|
|
|
|
DatesRangeDto GetReportsDatesRange(int wellId);
|
|
|
|
|
}
|
|
|
|
|
}
|