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