using AsbCloudApp.Data; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { public interface IWellSectionService: ICrudService { Task> GetAllByWellIdAsync(int idWell, int skip=0, int take=32, CancellationToken token = default); } }