using AsbCloudApp.Data; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { public interface IClusterService { Task> GetDepositsAsync(int idCompany, CancellationToken token); Task> GetDepositsDrillParamsAsync(int idCompany, CancellationToken token = default); Task> GetClustersAsync(int idCompany, int depositId, CancellationToken token); Task> GetClustersAsync(int idCompany, CancellationToken token); Task> GetWellsAsync(int idCompany, int clusterId, CancellationToken token); } }