using System.IO;
using System.Threading;
using System.Threading.Tasks;
using AsbCloudApp.Data.WellOperationImport;
namespace AsbCloudApp.Services.WellOperationImport;
///
/// Импорт ГГД
///
public interface IWellOperationImportService
{
///
/// Загрузить из excel список операций
///
///
///
///
///
///
///
Task ImportAsync(int idWell, int idUser, Stream stream, WellOperationParserOptionsDto options, bool deleteBeforeImport,
CancellationToken cancellationToken);
}