forked from ddrilling/AsbCloudServer
15 lines
332 B
C#
15 lines
332 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IWellSectionService
|
|
{
|
|
Task<IEnumerable<WellSectionDto>> GetSectionsByWellIdAsync(int idWell,
|
|
CancellationToken token = default);
|
|
|
|
}
|
|
}
|