forked from ddrilling/AsbCloudServer
11f5bd00f1
Разработана модель данных
20 lines
615 B
C#
20 lines
615 B
C#
using AsbCloudApp.Data;
|
|
using AsbCloudApp.Data.Analytics;
|
|
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);
|
|
IEnumerable<ClusterDto> GetClusters(int idCustomer);
|
|
IEnumerable<WellDto> GetWells(int idCustomer, int clusterId);
|
|
IEnumerable<WellDrillingStatDto> GetAnalysis(int idCustomer, int clusterId);
|
|
}
|
|
}
|