2021-07-19 15:11:01 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IClusterService
|
|
|
|
|
{
|
2021-07-21 15:22:58 +05:00
|
|
|
|
IEnumerable<DepositDto> GetDeposits(int idCompany);
|
|
|
|
|
IEnumerable<ClusterDto> GetClusters(int idCompany, int depositId);
|
|
|
|
|
IEnumerable<ClusterDto> GetClusters(int idCompany);
|
|
|
|
|
IEnumerable<WellDto> GetWells(int idCompany, int clusterId);
|
2021-07-21 17:23:57 +05:00
|
|
|
|
ClusterStatDto GetStat(int idCompany, int clusterId);
|
2021-07-19 15:11:01 +05:00
|
|
|
|
}
|
|
|
|
|
}
|