forked from ddrilling/AsbCloudServer
94b7dd3ef7
Stats reorganized
14 lines
424 B
C#
14 lines
424 B
C#
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);
|
|
}
|
|
}
|