forked from ddrilling/AsbCloudServer
19 lines
505 B
C#
19 lines
505 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using AsbCloudApp.Data.WellReport;
|
|
|
|
namespace AsbCloudApp.Services.WellReport;
|
|
|
|
/// <summary>
|
|
/// Сервис формирования отчёта
|
|
/// </summary>
|
|
public interface IWellReportService
|
|
{
|
|
/// <summary>
|
|
/// Сформировать
|
|
/// </summary>
|
|
/// <param name="idWell"></param>
|
|
/// <param name="token"></param>
|
|
/// <returns></returns>
|
|
Task<WellReportDto?> GetAsync(int idWell, CancellationToken token);
|
|
} |