DD.WellWorkover.Cloud/AsbCloudApp/Services/IWellSectionService.cs
2021-08-10 14:35:49 +05:00

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);
}
}