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

14 lines
424 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 IWellOperationsStatService
{
Task<StatClusterDto> GetOperationStatByClusterAsync(int idCluster, CancellationToken token = default);
Task<StatWellDto> GetOperationStatByWellAsync(int idWell, CancellationToken token = default);
}
}