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