DD.WellWorkover.Cloud/AsbCloudApp/Services/IClusterService.cs

20 lines
656 B
C#
Raw Normal View History

using AsbCloudApp.Data;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
public interface IClusterService
{
2021-09-10 11:28:57 +05:00
Task<IEnumerable<DepositDto>> GetDepositsAsync(int idCompany,
CancellationToken token);
Task<IEnumerable<ClusterDto>> GetClustersAsync(int idCompany,
int depositId, CancellationToken token);
Task<IEnumerable<ClusterDto>> GetClustersAsync(int idCompany,
CancellationToken token);
2021-09-10 11:28:57 +05:00
Task<IEnumerable<WellDto>> GetWellsAsync(int idCompany,
int clusterId, CancellationToken token);
}
}