using System.IO;
using System.Threading.Tasks;
using System.Threading;
namespace AsbCloudApp.Services.WellReport;
///
/// Сервис экспорта отчёта
///
public interface IWellReportExportService
{
///
/// Экспортировать
///
///
///
///
Task<(string Name, Stream File)?> ExportAsync(int idWell, CancellationToken token);
}