forked from ddrilling/AsbCloudServer
Степанов Дмитрий
ff02a29115
1. Добавил парсинг Газпромовских файлов 2. Сделал рефакторинг существующего импорта
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);
|
|
} |