forked from ddrilling/AsbCloudServer
34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using AsbCloudApp.Data;
|
||
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);
|
||
|
||
/// <summary>
|
||
/// Получение РТК по композитной скважине
|
||
/// </summary>
|
||
/// <param name="dtos"></param>
|
||
/// <param name="token"></param>
|
||
/// <returns></returns>
|
||
Task<IEnumerable<ProcessMapDto>> GetCompositeData(int idWell, CancellationToken token);
|
||
}
|
||
#nullable disable
|
||
}
|