using AsbCloudApp.Data;
using AsbCloudApp.Data.SAUB;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
#nullable enable
///
/// Наработка талевого каната
///
public interface ITelemetryWirelineRunOutRepository
{
///
/// Принимает данные от панели
///
///
///
///
int AddOrUpdate(int idTelemetry, TelemetryWirelineRunOutDto dto);
///
/// Выдает данные по скважине
///
///
///
///
///
Task GetValueOrDefaultAsync(int idTelemetry, WellInfoDto wellInfo, CancellationToken token);
}
#nullable disable
}