2023-08-15 14:20:28 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Сервис для ствола скважины
|
|
|
|
/// </summary>
|
|
|
|
public interface IWellboreService
|
|
|
|
{
|
2023-10-23 18:06:57 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Получение стволов скважин
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="idsWells"></param>
|
|
|
|
/// <param name="cancellationToken"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
Task<IEnumerable<WellboreDto>> GetWellboresAsync(IEnumerable<int> idsWells, CancellationToken cancellationToken);
|
2023-08-15 14:20:28 +05:00
|
|
|
}
|