forked from ddrilling/AsbCloudServer
21 lines
623 B
C#
21 lines
623 B
C#
|
using System;
|
||
|
using System.IO;
|
||
|
using System.Threading;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace AsbCloudApp.Services.DailyReport;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Сервис экспорта суточного отчёта
|
||
|
/// </summary>
|
||
|
public interface IDailyReportExportService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Экспортировать
|
||
|
/// </summary>
|
||
|
/// <param name="idWell"></param>
|
||
|
/// <param name="dailyReportDateStart"></param>
|
||
|
/// <param name="cancellationToken"></param>
|
||
|
/// <returns></returns>
|
||
|
Task<(string FileName, Stream File)> ExportAsync(int idWell, DateTime dailyReportDateStart, CancellationToken cancellationToken);
|
||
|
}
|