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