DD.WellWorkover.Cloud/AsbCloudApp/Services/IOperationsStatService.cs

17 lines
723 B
C#
Raw Normal View History

using AsbCloudApp.Data;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
public interface IOperationsStatService
{
2022-03-16 16:07:37 +05:00
Task<ClusterRopStatDto> GetRopStatAsync(int idWell, CancellationToken token);
Task<StatClusterDto> GetStatClusterAsync(int idCluster, int idCompany, CancellationToken token = default);
2022-03-02 16:21:07 +05:00
Task<StatWellDto> GetWellStatAsync(int idWell, CancellationToken token = default);
Task<IEnumerable<PlanFactPredictBase<WellOperationDto>>> GetTvdAsync(int idWell, CancellationToken token);
Task<IEnumerable<StatWellDto>> GetWellsStatAsync(IEnumerable<int> idWells, CancellationToken token);
}
}