DD.WellWorkover.Cloud/AsbCloudApp/Repositories/ITrajectoryRepository.cs

26 lines
796 B
C#
Raw Normal View History

using AsbCloudApp.Data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
/// <summary>
/// Репозиторий по работе с траекторией
/// </summary>
2023-05-30 11:21:07 +05:00
public interface ITrajectoryRepository<T>
where T : TrajectoryGeoDto
{
2023-05-30 11:21:07 +05:00
/// <summary>
/// Получить все добавленные по скважине координаты плановой траектории
/// </summary>
/// <param name="idWell"></param>
/// <param name="token"></param>
/// <returns></returns>
Task<IEnumerable<T>> GetAsync(int idWell, CancellationToken token);
}
}