using AsbCloudApp.Data.Trajectory;
using AsbCloudApp.Requests;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
///
/// Репозиторий по работе с траекторией
///
public interface ITrajectoryRepository
where T : TrajectoryGeoDto
{
///
/// Получить все добавленные по скважине координаты траектории
///
/// параметры запроса
///
///
Task> GetAsync(TrajectoryRequest request, CancellationToken token);
}
}