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, DateOnly dailyReportDate, CancellationToken cancellationToken);
}