forked from ddrilling/AsbCloudServer
22 lines
689 B
C#
22 lines
689 B
C#
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using AsbCloudApp.Data;
|
|
using AsbCloudApp.Data.ProcessMaps;
|
|
using AsbCloudApp.Services;
|
|
|
|
namespace AsbCloudApp.Repositories;
|
|
|
|
/// <summary>
|
|
/// Секция скважины - план
|
|
/// </summary>
|
|
public interface IWellSectionPlanRepository : IRepositoryWellRelated<WellSectionPlanDto>
|
|
{
|
|
/// <summary>
|
|
/// Получить типы секций
|
|
/// </summary>
|
|
/// <param name="idWell"></param>
|
|
/// <param name="cancellationToken"></param>
|
|
/// <returns></returns>
|
|
Task<IEnumerable<WellSectionTypeDto>> GetWellSectionTypesAsync(int idWell, CancellationToken cancellationToken);
|
|
} |