forked from ddrilling/AsbCloudServer
20 lines
661 B
C#
20 lines
661 B
C#
using System.Collections.Generic;
|
||
using System.Threading;
|
||
using System.Threading.Tasks;
|
||
using AsbCloudApp.Data.ProcessMaps.Report;
|
||
|
||
namespace AsbCloudApp.Services.ProcessMaps.WellDrilling;
|
||
|
||
/// <summary>
|
||
/// Сервис формирования отчёта РТК бурение
|
||
/// </summary>
|
||
public interface IProcessMapReportWellDrillingService
|
||
{
|
||
/// <summary>
|
||
/// Получить отчёт РТК по бурению
|
||
/// </summary>
|
||
/// <param name="idWell"></param>
|
||
/// <param name="token"></param>
|
||
/// <returns></returns>
|
||
Task<IEnumerable<ProcessMapReportWellDrillingDto>> GetAsync(int idWell, CancellationToken token);
|
||
} |