forked from ddrilling/AsbCloudServer
24 lines
761 B
C#
24 lines
761 B
C#
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using AsbCloudApp.Data.WellOperationImport;
|
|
|
|
namespace AsbCloudApp.Services.WellOperationImport;
|
|
|
|
/// <summary>
|
|
/// Импорт ГГД
|
|
/// </summary>
|
|
public interface IWellOperationImportService
|
|
{
|
|
/// <summary>
|
|
/// Загрузить из excel список операций
|
|
/// </summary>
|
|
/// <param name="idWell"></param>
|
|
/// <param name="stream"></param>
|
|
/// <param name="idUser"></param>
|
|
/// <param name="deleteBeforeImport"></param>
|
|
/// <param name="cancellationToken"></param>
|
|
/// <param name="options"></param>
|
|
Task ImportAsync(int idWell, int idUser, Stream stream, WellOperationParserOptionsDto options, bool deleteBeforeImport,
|
|
CancellationToken cancellationToken);
|
|
} |