2023-01-30 10:52:12 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMap;
|
2022-12-27 14:30:52 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сервис формирования РТК
|
|
|
|
|
/// </summary>
|
2023-04-03 14:59:59 +05:00
|
|
|
|
public interface IProcessMapReportService
|
2022-12-27 14:30:52 +05:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение моделей РТК
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="idWell"></param>
|
|
|
|
|
/// <param name="token"></param>
|
|
|
|
|
/// <returns></returns>
|
2023-04-06 10:25:51 +05:00
|
|
|
|
Task<IEnumerable<ProcessMapReportDto>> GetProcessMapReportAsync(int idWell, CancellationToken token);
|
2022-12-27 14:30:52 +05:00
|
|
|
|
}
|
|
|
|
|
}
|