forked from ddrilling/AsbCloudServer
19 lines
485 B
C#
19 lines
485 B
C#
using System.IO;
|
||
using System.Threading;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace AsbCloudApp.Services;
|
||
|
||
/// <summary>
|
||
/// Экспорт РТК
|
||
/// </summary>
|
||
public interface IProcessMapPlanExportService
|
||
{
|
||
/// <summary>
|
||
/// Экспортировать РТК по скважине
|
||
/// </summary>
|
||
/// <param name="idWell"></param>
|
||
/// <param name="token"></param>
|
||
/// <returns></returns>
|
||
Task<(string FileName, Stream File)> ExportAsync(int idWell, CancellationToken token);
|
||
} |