using System.Threading;
using System.Threading.Tasks;
using AsbCloudApp.Data.WellReport;
namespace AsbCloudApp.Services.WellReport;
///
/// Сервис формирования отчёта
///
public interface IWellReportService
{
///
/// Сформировать
///
///
///
///
Task GetAsync(int idWell, CancellationToken token);
}