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, int idType, Stream stream, WellOperationParserOptionsDto options, bool deleteWellOperationsBeforeImport, CancellationToken cancellationToken); }