forked from ddrilling/AsbCloudServer
19 lines
470 B
C#
19 lines
470 B
C#
|
using System.IO;
|
||
|
using System.Threading;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace AsbCloudApp.Services.WellOperationImport;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Экспорт ГГД
|
||
|
/// </summary>
|
||
|
public interface IWellOperationExportService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Скачать в excel
|
||
|
/// </summary>
|
||
|
/// <param name="idWell"></param>
|
||
|
/// <param name="cancellationToken"></param>
|
||
|
/// <returns></returns>
|
||
|
Task<Stream> ExportAsync(int idWell, CancellationToken cancellationToken);
|
||
|
}
|