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, EventHandler<(float progress, string operation)> handleReportProgress); int GetReportPagesCount(int wellId, DateTime begin, DateTime end, int stepSeconds, int format); DatesRangeDto GetReportsDatesRange(int wellId); } }