using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Services.WellOperationImport;
///
/// Экспорт ГГД
///
public interface IWellOperationExportService
{
///
/// Скачать в excel
///
///
///
///
Task ExportAsync(int idWell, CancellationToken cancellationToken);
}