DD.WellWorkover.Cloud/AsbCloudApp/Services/WellReport/IWellReportService.cs
2024-09-02 10:07:18 +05:00

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