using AsbCloudApp.Data; using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { /// /// РТК /// public interface IProcessMapRepository : IRepositoryWellRelated { /// /// Получить параметры бурения начиная с даты. /// /// /// /// /// Task> GetAllAsync(int idWell, DateTime? updateFrom, CancellationToken token = default); } }