forked from ddrilling/AsbCloudServer
14 lines
402 B
C#
14 lines
402 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IWellOperationsStatService
|
|
{
|
|
Task<StatClusterDto> GetStatClusterAsync(int idCluster, CancellationToken token = default);
|
|
Task<StatWellDto> GetStatWellAsync(int idWell, CancellationToken token = default);
|
|
}
|
|
}
|