forked from ddrilling/AsbCloudServer
22 lines
744 B
C#
22 lines
744 B
C#
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="idUser"></param>
|
|
/// <param name="idType"></param>
|
|
/// <param name="sheet"></param>
|
|
/// <param name="deleteBeforeImport"></param>
|
|
/// <param name="cancellationToken"></param>
|
|
Task ImportAsync(int idWell, int idUser, int idType, SheetDto sheet, bool deleteBeforeImport, CancellationToken cancellationToken);
|
|
} |