using AsbCloudApp.Data; using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { public interface IDrillFlowChartService : ICrudWellRelatedService { Task> GetAllAsync(int idWell, DateTime updateFrom, CancellationToken token = default); } }