DD.WellWorkover.Cloud/AsbCloudApp/Services/IReportService.cs

15 lines
478 B
C#
Raw Normal View History

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,
2021-05-20 12:38:25 +05:00
Action<float, string, int > handleReportProgress);
int GetReportPagesCount(int wellId, DateTime begin, DateTime end, int stepSeconds, int format);
DatesRangeDto GetReportsDatesRange(int wellId);
}
}