2021-08-10 14:35:49 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
2021-08-20 16:56:21 +05:00
|
|
|
|
using System.Collections.Generic;
|
2021-08-10 14:35:49 +05:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
2021-08-10 16:37:36 +05:00
|
|
|
|
public interface IWellSectionService
|
2021-08-10 14:35:49 +05:00
|
|
|
|
{
|
2021-08-20 16:56:21 +05:00
|
|
|
|
Task<IEnumerable<WellSectionDto>> GetSectionsByWellIdAsync(int idWell,
|
|
|
|
|
CancellationToken token = default);
|
|
|
|
|
Task<WellSectionDto> GetSectionByWellIdAsync(int id,
|
2021-08-20 13:56:01 +05:00
|
|
|
|
CancellationToken token = default);
|
2021-08-10 14:35:49 +05:00
|
|
|
|
}
|
|
|
|
|
}
|