forked from ddrilling/AsbCloudServer
16 lines
557 B
C#
16 lines
557 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IClusterService
|
|
{
|
|
Task<IEnumerable<DepositDto>> GetDepositsAsync(int idCompany);
|
|
Task<IEnumerable<ClusterDto>> GetClustersAsync(int idCompany, int depositId);
|
|
Task<IEnumerable<ClusterDto>> GetClustersAsync(int idCompany);
|
|
Task<IEnumerable<WellDto>> GetWellsAsync(int idCompany, int clusterId);
|
|
Task<ClusterStatDto> GetStatAsync(int idCompany, int clusterId);
|
|
}
|
|
}
|