using AsbCloudApp.Data;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;

namespace AsbCloudApp.Services
{
    public interface IOperationsStatService
    {
        Task<ClusterRopStatDto> GetRopStatByIdWellAsync(int idWell, CancellationToken token);
        Task<ClusterRopStatDto> GetRopStatByUidAsync(string uid, CancellationToken token);
        Task<StatClusterDto> GetStatClusterAsync(int idCluster, int idCompany, CancellationToken token = default);
        Task<StatWellDto> GetStatWellAsync(int idWell, CancellationToken token = default);
        Task<IEnumerable<PlanFactPredictBase<WellOperationDto>>> GetTvdAsync(int idWell, CancellationToken token);
        Task<IEnumerable<StatWellDto>> GetWellsStatAsync(IEnumerable<int> idWells, CancellationToken token);
    }
}