forked from ddrilling/AsbCloudServer
13 lines
377 B
C#
13 lines
377 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IWellSectionService: ICrudService<WellSectionDto>
|
|
{
|
|
Task<PaginationContainer<WellSectionDto>> GetAllByWellIdAsync(int idWell, int skip=0, int take=32, CancellationToken token = default);
|
|
}
|
|
}
|