2021-07-19 15:11:01 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System.Collections.Generic;
|
2021-08-11 12:11:21 +05:00
|
|
|
|
using System.Threading.Tasks;
|
2021-07-19 15:11:01 +05:00
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IClusterService
|
|
|
|
|
{
|
2021-08-11 12:11:21 +05:00
|
|
|
|
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);
|
2021-07-19 15:11:01 +05:00
|
|
|
|
}
|
|
|
|
|
}
|