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