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);
}