2021-08-24 16:47:10 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IWellOperationsStatService
|
|
|
|
|
{
|
2021-08-25 11:30:50 +05:00
|
|
|
|
Task<StatClusterDto> GetStatClusterAsync(int idCluster, CancellationToken token = default);
|
|
|
|
|
Task<StatWellDto> GetStatWellAsync(int idWell, CancellationToken token = default);
|
2021-08-27 12:15:04 +05:00
|
|
|
|
Task<IEnumerable<PlanFactPredictBase<WellOperationDto>>> GetTvdAsync(int idWell, CancellationToken token);
|
2021-08-24 16:47:10 +05:00
|
|
|
|
}
|
|
|
|
|
}
|