forked from ddrilling/AsbCloudServer
25 lines
673 B
C#
25 lines
673 B
C#
|
using AsbCloudApp.Data.ProcessMap;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
#nullable enable
|
|||
|
/// <summary>
|
|||
|
/// Сервис формирования РТК
|
|||
|
/// </summary>
|
|||
|
public interface IProcessMapService
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Получение моделей РТК
|
|||
|
/// </summary>
|
|||
|
/// <param name="idWell"></param>
|
|||
|
/// <param name="token"></param>
|
|||
|
/// <returns></returns>
|
|||
|
Task<IEnumerable<ProcessMapReportDto>> GetProcessMapAsync(int idWell, CancellationToken token);
|
|||
|
}
|
|||
|
#nullable disable
|
|||
|
}
|