using AsbCloudDb.Model; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Repositories { #nullable enable /// /// Визуализация траектории 3D /// public interface ITrajectoryVisualizationRepository { /// /// Получение данных для расчета /// /// /// /// Task> GetAllAsync(int idWell, CancellationToken token); } #nullable disable }