using AsbCloudApp.Data; 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); } }