using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using AsbCloudApp.Data; namespace AsbCloudApp.Services { public interface IDrillParamsService : ICrudService { Task GetDefaultDrillParamsAsync(int idWell, double startDepth, double endDepth, CancellationToken token = default); Task> GetAllAsync(int idWell, CancellationToken token = default); } }