using System; using System.IO; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services.DailyReport; /// /// Сервис экспорта суточного отчёта /// public interface IDailyReportExportService { /// /// Экспортировать /// /// /// /// /// Task<(string FileName, Stream File)> ExportAsync(int idWell, DateTime dailyReportDateStart, CancellationToken cancellationToken); }