forked from ddrilling/AsbCloudServer
14 lines
334 B
C#
14 lines
334 B
C#
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using AsbCloudApp.Data;
|
|||
|
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
public interface IWellOperationService
|
|||
|
{
|
|||
|
Task<PaginationContainer<WellOperationDto>> GetAllByWellIdAsync(int idWell,
|
|||
|
int skip = 0, int take = 32, CancellationToken token = default);
|
|||
|
}
|
|||
|
}
|