2021-07-19 15:11:01 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IClusterService
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<DepositDto> GetDeposits(int idCustomer);
|
|
|
|
|
IEnumerable<ClusterDto> GetClusters(int idCustomer, int depositId);
|
2021-07-19 15:57:51 +05:00
|
|
|
|
IEnumerable<ClusterDto> GetClusters(int idCustomer);
|
2021-07-19 15:11:01 +05:00
|
|
|
|
IEnumerable<WellDto> GetWells(int idCustomer, int clusterId);
|
|
|
|
|
IEnumerable<ClusterAnalysisDto> GetAnalysis(int idCustomer, int clusterId);
|
|
|
|
|
}
|
|
|
|
|
}
|