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

13 lines
374 B
C#
Raw Normal View History

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);
}
}