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, SheetDto sheet, bool deleteBeforeImport, CancellationToken cancellationToken); }