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