forked from ddrilling/AsbCloudServer
19 lines
576 B
C#
19 lines
576 B
C#
using System.IO;
|
||
using System.Threading.Tasks;
|
||
using System.Threading;
|
||
|
||
namespace AsbCloudApp.Services.ProcessMaps.WellDrilling;
|
||
|
||
/// <summary>
|
||
/// Сервис экспорт РТК
|
||
/// </summary>
|
||
public interface IProcessMapReportWellDrillingExportService
|
||
{
|
||
/// <summary>
|
||
/// Сформировать файл с данными
|
||
/// </summary>
|
||
/// <param name="idWell"></param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
Task<(string Name, Stream File)?> ExportAsync(int idWell, CancellationToken cancellationToken);
|
||
} |