forked from ddrilling/AsbCloudServer
15 lines
472 B
C#
15 lines
472 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IClusterService
|
|
{
|
|
IEnumerable<DepositDto> GetDeposits(int idCompany);
|
|
IEnumerable<ClusterDto> GetClusters(int idCompany, int depositId);
|
|
IEnumerable<ClusterDto> GetClusters(int idCompany);
|
|
IEnumerable<WellDto> GetWells(int idCompany, int clusterId);
|
|
ClusterStatDto GetStat(int idCompany, int clusterId);
|
|
}
|
|
}
|