2023-12-04 17:09:58 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2023-12-13 18:06:48 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
2023-12-04 17:09:58 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMaps;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services.ProcessMaps;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IProcessMapPlanService<T>
|
|
|
|
|
where T : ProcessMapPlanBaseDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2023-12-13 18:06:48 +05:00
|
|
|
|
/// Получение РТК план по скважине
|
2023-12-04 17:09:58 +05:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="idWell"></param>
|
|
|
|
|
/// <param name="cancellationToken"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
Task<IEnumerable<ValidationResultDto<T>>> GetAsync(int idWell, CancellationToken cancellationToken);
|
|
|
|
|
}
|