2021-05-18 12:33:23 +05:00
|
|
|
|
using System;
|
2021-05-31 12:33:17 +05:00
|
|
|
|
using System.Collections.Generic;
|
2021-05-18 12:33:23 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IReportService
|
|
|
|
|
{
|
2021-05-19 14:41:27 +05:00
|
|
|
|
string RootPath { get; }
|
2021-05-20 11:07:45 +05:00
|
|
|
|
int CreateReport(int wellId, int stepSeconds, int format, DateTime begin, DateTime end,
|
2021-06-07 16:31:14 +05:00
|
|
|
|
Action<float, string, int> handleReportProgress, Action<string, int> handleReportName);
|
2021-05-18 12:33:23 +05:00
|
|
|
|
int GetReportPagesCount(int wellId, DateTime begin, DateTime end, int stepSeconds, int format);
|
2021-06-07 16:31:14 +05:00
|
|
|
|
IEnumerable<ReportPropertiesDto> GetSuitableReports(int wellId, DateTime begin, DateTime end, int stepSeconds, int format);
|
2021-05-18 12:33:23 +05:00
|
|
|
|
DatesRangeDto GetReportsDatesRange(int wellId);
|
|
|
|
|
}
|
|
|
|
|
}
|