forked from ddrilling/AsbCloudServer
21 lines
581 B
C#
21 lines
581 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using AsbCloudApp.Data.ProcessMaps;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services.ProcessMaps;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// РТК
|
|||
|
/// </summary>
|
|||
|
public interface IProcessMapPlanService<T>
|
|||
|
where T : ProcessMapPlanBaseDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Получение РТК по скважине
|
|||
|
/// </summary>
|
|||
|
/// <param name="idWell"></param>
|
|||
|
/// <param name="cancellationToken"></param>
|
|||
|
/// <returns></returns>
|
|||
|
Task<IEnumerable<ValidationResultDto<T>>> GetAsync(int idWell, CancellationToken cancellationToken);
|
|||
|
}
|